2016-09-19 16:21:05 -07:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, libXmu }:
|
2010-07-28 08:35:01 -07:00
|
|
|
|
2012-08-20 13:36:10 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xclip";
|
2016-09-19 16:21:05 -07:00
|
|
|
version = "0.13";
|
2007-09-21 14:40:23 -07:00
|
|
|
|
2016-09-19 16:21:05 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "astrand";
|
|
|
|
repo = "xclip";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0q0hmvcjlv8arhh1pzhja2wglyj6n7z209jnpnzd281kqqv4czcs";
|
2007-09-21 14:40:23 -07:00
|
|
|
};
|
|
|
|
|
2016-09-19 16:21:05 -07:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
buildInputs = [ libXmu ];
|
2015-02-22 06:21:33 -08:00
|
|
|
|
2016-01-17 15:04:40 -08:00
|
|
|
meta = {
|
2010-07-28 08:35:01 -07:00
|
|
|
description = "Tool to access the X clipboard from a console application";
|
2016-09-19 16:21:05 -07:00
|
|
|
homepage = https://github.com/astrand/xclip;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-02-22 07:03:54 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2007-09-21 14:40:23 -07:00
|
|
|
};
|
|
|
|
}
|