3
0
Fork 0
forked from mirrors/nixpkgs

Add package for ClipIt, a lightweight GTK clipboard manager

This commit is contained in:
Paul Koerbitz 2014-08-21 16:22:08 +02:00
parent c346d22647
commit a5cf54a52b
2 changed files with 22 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -8240,6 +8240,8 @@ let
cinelerra = callPackage ../applications/video/cinelerra { };
clipit = callPackage ../applications/misc/clipit { };
cmus = callPackage ../applications/audio/cmus { };
compiz = callPackage ../applications/window-managers/compiz {