2016-09-20 04:06:30 +01:00
|
|
|
{stdenv, lib, fetchFromGitHub, libX11, autoreconfHook }:
|
2004-09-21 17:27:31 +01:00
|
|
|
|
2016-09-20 04:06:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xsel-unstable-${version}";
|
|
|
|
|
2019-02-21 00:03:47 +00:00
|
|
|
version = "2018-01-10";
|
2016-09-20 04:06:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kfish";
|
|
|
|
repo = "xsel";
|
2019-02-21 00:03:47 +00:00
|
|
|
rev = "9bfc13d64b5acb92c6648c696a9d9260fcbecc65";
|
|
|
|
sha256 = "05ms34by5hxznnpvmvhgp6llvlkz0zw4sq6c4bgwr82lj140lscm";
|
2004-09-21 17:27:31 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libX11 ];
|
2016-09-20 04:06:30 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command-line program for getting and setting the contents of the X selection";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.kfish.org/software/xsel;
|
2016-09-20 04:06:30 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.cstrahan ];
|
|
|
|
platforms = lib.platforms.unix;
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2004-09-21 17:27:31 +01:00
|
|
|
}
|