mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
627 B
Nix
22 lines
627 B
Nix
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "clipit-${version}";
|
|
version = "1.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/downloads/shantzu/ClipIt/${name}.tar.gz";
|
|
sha256 = "0jrwn8qfgb15rwspdp1p8hb1nc0ngmpvgr87d4k3lhlvqg2cfqva";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ intltool gtk2 xdotool hicolor-icon-theme ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Lightweight GTK+ Clipboard Manager";
|
|
homepage = "http://clipit.rspwn.com";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|