2020-10-08 06:52:51 -07:00
|
|
|
{ stdenv, lib, fetchFromGitHub, libX11, autoreconfHook }:
|
2004-09-21 09:27:31 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xsel-unstable";
|
2020-10-08 06:52:51 -07:00
|
|
|
version = "2020-05-27";
|
2016-09-19 20:06:30 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kfish";
|
|
|
|
repo = "xsel";
|
2020-10-08 06:52:51 -07:00
|
|
|
rev = "062e6d373537c60829fa9b5dcddbcd942986b3c3";
|
|
|
|
sha256 = "0fbf80zsc22vcqp59r9fdx4icxhrkv7l3lphw83326jrmkzy6kri";
|
2004-09-21 09:27:31 -07:00
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libX11 ];
|
2016-09-19 20:06:30 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command-line program for getting and setting the contents of the X selection";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.kfish.org/software/xsel";
|
2016-09-19 20:06:30 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.cstrahan ];
|
|
|
|
platforms = lib.platforms.unix;
|
2016-08-02 09:06:29 -07:00
|
|
|
};
|
2004-09-21 09:27:31 -07:00
|
|
|
}
|