Added xsel, a cool command-line tool for using the X clipboard

svn path=/nixpkgs/trunk/; revision=1485
This commit is contained in:
Martin Bravenboer 2004-09-21 16:27:31 +00:00
parent 9c4736c4f3
commit 9bdb07a79a

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, x11}:
stdenv.mkDerivation {
name = "xsel-0.9.6";
src = fetchurl {
url = http://www.vergenet.net/~conrad/software/xsel/download/xsel-0.9.6.tar.gz;
md5 = "cec2fb09a4101b7f2beab8094234e2f4";
};
buildInputs = [x11];
}