b0c2aea20b
This was either for the setup-hook to remove caches or added even though the respective icon theme propagated it.
22 lines
589 B
Nix
22 lines
589 B
Nix
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "clipit";
|
|
version = "1.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/downloads/shantzu/ClipIt/${pname}-${version}.tar.gz";
|
|
sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool gtk2 xdotool ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Lightweight GTK Clipboard Manager";
|
|
homepage = "http://clipit.rspwn.com";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|