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