about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/clipit/default.nix
blob: 693ce84c97ac827631be7ffe9c9d14fdd6717c2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ fetchurl, stdenv, intltool, pkgconfig, gtk2, xdotool, hicolor-icon-theme }:

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 hicolor-icon-theme ];

  meta = with stdenv.lib; {
    description = "Lightweight GTK+ Clipboard Manager";
    homepage    = "http://clipit.rspwn.com";
    license     = licenses.gpl3;
    platforms   = platforms.linux;
  };
}