2016-01-17 23:04:40 +00:00
|
|
|
{ stdenv, fetchsvn, xlibsWrapper, libXmu, autoreconfHook }:
|
2010-07-28 16:35:01 +01:00
|
|
|
|
2012-08-20 21:36:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-22 14:21:33 +00:00
|
|
|
# The last release from 2012, 0.12, lacks '-targets'
|
|
|
|
name = "xclip-0.12-svn-20140209";
|
2007-09-21 22:40:23 +01:00
|
|
|
|
2015-02-22 14:21:33 +00:00
|
|
|
src = fetchsvn {
|
|
|
|
url = "svn://svn.code.sf.net/p/xclip/code/trunk";
|
2016-02-17 11:57:04 +00:00
|
|
|
rev = "87";
|
|
|
|
sha256 = "1rbcdgr73916wvzfgqjs1jhgzk8qs1yw2iiqy7ifrkjafhi37w6b";
|
2007-09-21 22:40:23 +01:00
|
|
|
};
|
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
buildInputs = [ xlibsWrapper libXmu autoreconfHook ];
|
2015-02-22 14:21:33 +00:00
|
|
|
|
2016-01-17 23:04:40 +00:00
|
|
|
meta = {
|
2010-07-28 16:35:01 +01:00
|
|
|
description = "Tool to access the X clipboard from a console application";
|
2014-08-08 10:20:32 +01:00
|
|
|
homepage = http://sourceforge.net/projects/xclip/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2015-02-22 15:03:54 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2007-09-21 22:40:23 +01:00
|
|
|
};
|
|
|
|
}
|