2258b21e4b
Build-tested on x86_64 Linux and on Darwin.
15 lines
352 B
Nix
15 lines
352 B
Nix
{stdenv, fetchurl, xlibsWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xsel-1.2.0";
|
|
src = fetchurl {
|
|
url = http://www.vergenet.net/~conrad/software/xsel/download/xsel-1.2.0.tar.gz;
|
|
sha256 = "070lbcpw77j143jrbkh0y1v10ppn1jwmjf92800w7x42vh4cw9xr";
|
|
};
|
|
|
|
buildInputs = [xlibsWrapper];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|