guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add xclip.


From: John Darrington
Subject: 02/02: gnu: Add xclip.
Date: Tue, 02 Dec 2014 14:13:25 +0000

jmd pushed a commit to branch master
in repository guix.

commit de878f1b296ec585c86fc041fce9d619e47c231f
Author: John Darrington <address@hidden>
Date:   Tue Dec 2 15:06:51 2014 +0100

    gnu: Add xclip.
    
    * gnu/packages/xdisorg.scm (xclip): New variable.
---
 gnu/packages/xdisorg.scm |   26 ++++++++++++++++++++++++--
 1 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 2fc9bb0..a4e6bce 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -29,10 +29,32 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages xorg))
 
-
-
 ;; packages outside the x.org system proper
 
+(define-public xclip
+  (package
+    (name "xclip")
+    (version "0.12")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+              "mirror://sourceforge/" name "/" name "-" version ".tar.gz"))
+        (sha256
+          (base32
+           "0ibcf46rldnv0r424qcnai1fa5iq3lm5q5rdd7snsi5sb78gmixp"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f))   ; There is no test suite
+    (inputs `(("libxmu" ,libxmu)
+              ("libxt" ,libxt)))
+    (home-page "http://xclip.sourceforge.net/";)
+    (synopsis "Command line interface to X11 clipboard")
+    (description "Xclip is a command line interface to the X11 clipboard.  It
+can also be used for copying files, as an alternative to sftp/scp, thus
+avoiding password prompts when X11 forwarding has already been setup.")
+    (license license:gpl2+)))
+
 (define-public xeyes
   (package
     (name "xeyes")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]