summary refs log tree commit diff
path: root/pkgs/tools/misc/xclip/default.nix
blob: 1014f11453b9e6c4700e63411b25358faf838572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, x11, libXmu }:

stdenv.mkDerivation rec {
  name = "xclip-0.12";

  src = fetchurl {
    url = "mirror://sourceforge/xclip/${name}.tar.gz";
    sha256 = "0ibcf46rldnv0r424qcnai1fa5iq3lm5q5rdd7snsi5sb78gmixp";
  };

  buildInputs = [ x11 libXmu ];

  meta = { 
    description = "Tool to access the X clipboard from a console application";
    homepage = http://people.debian.org/~kims/xclip/;
    license = "GPL-2";
  };
}