2020-10-08 14:52:51 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libX11, autoreconfHook }:
|
2004-09-21 17:27:31 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "xsel-unstable";
|
2020-10-08 14:52:51 +01:00
|
|
|
version = "2020-05-27";
|
2016-09-20 04:06:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kfish";
|
|
|
|
repo = "xsel";
|
2020-10-08 14:52:51 +01:00
|
|
|
rev = "062e6d373537c60829fa9b5dcddbcd942986b3c3";
|
|
|
|
sha256 = "0fbf80zsc22vcqp59r9fdx4icxhrkv7l3lphw83326jrmkzy6kri";
|
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";
|
2020-04-01 02:11:51 +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
|
|
|
}
|