2018-02-25 03:23:58 +01:00
|
|
|
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool, hicolor-icon-theme }:
|
2014-08-21 16:22:08 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "clipit-${version}";
|
|
|
|
version = "1.4.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/downloads/shantzu/ClipIt/${name}.tar.gz";
|
|
|
|
sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 03:23:58 +01:00
|
|
|
buildInputs = [ intltool gtk2 xdotool hicolor-icon-theme ];
|
2014-08-21 16:22:08 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight GTK+ Clipboard Manager";
|
|
|
|
homepage = "http://clipit.rspwn.com";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|