Hey Guix,

This patch adds ClipIt (clipit) to the repository. Tested with lint,
build rounds=2 and actual usability.
>From 82051a27d1ca6131ad6295fad95e0bc19cc22bfa Mon Sep 17 00:00:00 2001
From: doncatnip <gno...@gmail.com>
Date: Thu, 1 Sep 2016 03:15:01 +0200
Subject: [PATCH] gnu: gtk: Add clipit.

* gnu/packages/gtk.scm (clipit): New variable.
---
 gnu/packages/gtk.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 8feac11..c47a763 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -1331,3 +1331,39 @@ glass artworks done by Venicians glass blowers.")
      "GtkSpell provides word-processor-style highlighting and replacement of
 misspelled words in a GtkTextView widget.")
     (license license:gpl2+)))
+
+(define-public clipit
+  (package
+    (name "clipit")
+    (version "1.4.2")
+    (source (origin
+      (method url-fetch)
+      (file-name (string-append name "-" version ".tar.gz"))
+      (uri (string-append
+            "https://github.com/CristianHenzel/ClipIt/archive/";
+            version ".tar.gz"))
+      (sha256
+        (base32 "0ni1xrzabs8685wv3fgranrw49bf6bjmrqmqpp6vjm70br7bm1h6"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases (alist-cons-after
+                 'unpack 'autogen
+                 (lambda _
+                   (zero? (system* "sh" "autogen.sh")))
+                 %standard-phases)))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)
+       ("autoconf", autoconf)
+       ("automake", automake)
+       ("libtool", libtool)))
+    (inputs
+     `(("gtk+" ,gtk+-2)))
+    (home-page "https://github.com/CristianHenzel/ClipIt";)
+    (synopsis "Lightweight GTK+ clipboard manager")
+    (description
+     "Clipboard manager with features such as a history, search thereof, global
+hotkeys and clipboard item actions.  ClipIt was forked from Parcellite and adds
+many bugfixes and features to the project.  For a full list of changes see
+https://github.com/CristianHenzel/ClipIt/blob/master/ChangeLog";)
+    (license license:gpl2+)))
-- 
2.9.3

Reply via email to