gnu: gnupg: Fix cross-compile issues.
[jackhill/guix/guix.git] / gnu / packages / xnee.scm
CommitLineData
75c6fd43
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages xnee)
20 #:use-module (guix packages)
21 #:use-module (guix licenses)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages xorg)
1369442b 25 #:use-module (gnu packages pkg-config))
75c6fd43
LC
26
27(define-public xnee
28 (package
29 (name "xnee")
30 (version "3.16")
31 (source (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/xnee/xnee-"
34 version ".tar.gz"))
35 (sha256
36 (base32
37 "1zkn66zpnbxryrb76cc3r2via6216868l1xsnl3vdymbsy23sf87"))))
38 (build-system gnu-build-system)
39 (inputs
40 `(("recordproto" ,recordproto)
41 ("pkg-config" ,pkg-config)
42 ("inputproto" ,inputproto)
43 ("libxi" ,libxi)
75c6fd43
LC
44 ("libxtst" ,libxtst)
45 ("xextproto" ,xextproto)
46 ("libxext" ,libxext)
47 ("xproto" ,xproto)
48 ("libx11" ,libx11)))
49 (home-page "http://www.gnu.org/software/xnee/")
50 (synopsis "Record, replay and distribute user actions under X11")
51 (description
79c311b8
LC
52 "GNU Xnee is a program that can record, replay and distribute user
53actions in X11. It can be used to automate user interactions for testing or
a22dc0c4 54demonstration purposes.")
75c6fd43 55 (license gpl3+)))