2016-01-18 00:04:40 +01:00
|
|
|
{ stdenv, fetchsvn, xlibsWrapper, libXmu, autoreconfHook }:
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2012-08-20 22:36:10 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-22 15:21:33 +01:00
|
|
|
# The last release from 2012, 0.12, lacks '-targets'
|
|
|
|
name = "xclip-0.12-svn-20140209";
|
2007-09-21 23:40:23 +02:00
|
|
|
|
2015-02-22 15:21:33 +01:00
|
|
|
src = fetchsvn {
|
|
|
|
url = "svn://svn.code.sf.net/p/xclip/code/trunk";
|
2016-02-17 12:57:04 +01:00
|
|
|
rev = "87";
|
|
|
|
sha256 = "1rbcdgr73916wvzfgqjs1jhgzk8qs1yw2iiqy7ifrkjafhi37w6b";
|
2007-09-21 23:40:23 +02:00
|
|
|
};
|
|
|
|
|
2016-01-18 00:04:40 +01:00
|
|
|
buildInputs = [ xlibsWrapper libXmu autoreconfHook ];
|
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";
|
2014-08-08 11:20:32 +02:00
|
|
|
homepage = http://sourceforge.net/projects/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
|
|
|
};
|
|
|
|
}
|