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