aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/clipit
diff options
context:
space:
mode:
authorPaul Koerbitz <paul.koerbitz@theppro.com>2014-08-21 16:22:08 +0200
committerPaul Koerbitz <paul.koerbitz@theppro.com>2014-08-21 16:22:08 +0200
commita5cf54a52b42d4caf3e967a1744a401cd0de79a2 (patch)
tree5db882fb3e2e2e9d855732172310dfba97ca7829 /pkgs/applications/misc/clipit
parentc346d2264796663fd972ee4cb6a188dd32cbf7e3 (diff)
Add package for ClipIt, a lightweight GTK clipboard manager
Diffstat (limited to 'pkgs/applications/misc/clipit')
-rw-r--r--pkgs/applications/misc/clipit/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/misc/clipit/default.nix b/pkgs/applications/misc/clipit/default.nix
new file mode 100644
index 000000000000..57f6c229a08f
--- /dev/null
+++ b/pkgs/applications/misc/clipit/default.nix
@@ -0,0 +1,20 @@
+{ fetchurl, stdenv, intltool, pkgconfig, gtk, xdotool }:
+
+stdenv.mkDerivation rec {
+ name = "clipit-${version}";
+ version = "1.4.2";
+
+ src = fetchurl {
+ url = "https://github.com/downloads/shantzu/ClipIt/${name}.tar.gz";
+ sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
+ };
+
+ buildInputs = [ intltool pkgconfig gtk xdotool ];
+
+ meta = with stdenv.lib; {
+ description = "Lightweight GTK+ Clipboard Manager";
+ homepage = "http://clipit.rspwn.com";
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ };
+}