2015-02-22 15:21:33 +01:00
|
|
|
{ stdenv, fetchsvn, x11, libXmu, autoconf, automake, libtool }:
|
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";
|
|
|
|
sha256 = "0d6r38xas5l79l700sdm14l41vvjqhah613367ha8kcvx54zkddz";
|
2007-09-21 23:40:23 +02:00
|
|
|
};
|
|
|
|
|
2015-02-22 15:21:33 +01:00
|
|
|
preConfigure = "autoreconf -vfi";
|
|
|
|
|
|
|
|
buildInputs = [ x11 libXmu autoconf automake libtool ];
|
2007-09-21 23:40:23 +02: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
|
|
|
};
|
|
|
|
}
|