2016-09-20 04:06:30 +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";
|
2016-09-20 04:06:30 +01:00
|
|
|
|
2019-11-02 17:30:51 +00:00
|
|
|
version = "2019-08-21";
|
2016-09-20 04:06:30 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kfish";
|
|
|
|
repo = "xsel";
|
2019-11-02 17:30:51 +00:00
|
|
|
rev = "ef01f3c72a195dbce682184c842b81b17d7d7ad1";
|
|
|
|
sha256 = "191qa6022b7nww3bicfxpgp4d9x6c8s3sgixi780383ghkxds08c";
|
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
|
|
|
}
|