1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/xsel/default.nix

26 lines
686 B
Nix
Raw Normal View History

{stdenv, lib, fetchFromGitHub, libX11, autoreconfHook }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "xsel-unstable";
2019-02-21 00:03:47 +00:00
version = "2018-01-10";
src = fetchFromGitHub {
owner = "kfish";
repo = "xsel";
2019-02-21 00:03:47 +00:00
rev = "9bfc13d64b5acb92c6648c696a9d9260fcbecc65";
sha256 = "05ms34by5hxznnpvmvhgp6llvlkz0zw4sq6c4bgwr82lj140lscm";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 ];
meta = with lib; {
description = "Command-line program for getting and setting the contents of the X selection";
homepage = http://www.kfish.org/software/xsel;
license = licenses.mit;
maintainers = [ maintainers.cstrahan ];
platforms = lib.platforms.unix;
};
}