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