1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00
nixpkgs/pkgs/tools/misc/xclip/default.nix
Lluís Batlle i Rossell 9fbbefb994 Update xclip to a more recent version (svn)
This can do -target, so it can work with images.

(cherry picked from commit 58a004999b)
2015-02-22 15:25:49 +01:00

22 lines
620 B
Nix

{ stdenv, fetchsvn, x11, libXmu, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
# The last release from 2012, 0.12, lacks '-targets'
name = "xclip-0.12-svn-20140209";
src = fetchsvn {
url = "svn://svn.code.sf.net/p/xclip/code/trunk";
sha256 = "0d6r38xas5l79l700sdm14l41vvjqhah613367ha8kcvx54zkddz";
};
preConfigure = "autoreconf -vfi";
buildInputs = [ x11 libXmu autoconf automake libtool ];
meta = {
description = "Tool to access the X clipboard from a console application";
homepage = http://sourceforge.net/projects/xclip/;
license = stdenv.lib.licenses.gpl2;
};
}