mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21 lines
560 B
Nix
21 lines
560 B
Nix
{ 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;
|
|
};
|
|
}
|