mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Added xsel, a cool command-line tool for using the X clipboard
svn path=/nixpkgs/trunk/; revision=1485
This commit is contained in:
parent
9c4736c4f3
commit
9bdb07a79a
11
pkgs/tools/misc/xsel/default.nix
Normal file
11
pkgs/tools/misc/xsel/default.nix
Normal 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];
|
||||
}
|
Loading…
Reference in New Issue
Block a user