summary refs log tree commit diff
path: root/pkgs/tools/misc/xsel/default.nix
blob: 5c8d6f37c7c66cefa1ab74e84230b8cc89086902 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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];
}