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