From 9fbbefb9941befc0370710c7f286a919ace4eb4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= <viric@viric.name> Date: Sun, 22 Feb 2015 15:21:33 +0100 Subject: [PATCH] Update xclip to a more recent version (svn) This can do -target, so it can work with images. (cherry picked from commit 58a004999b6721fb8e55e397c0c3293d4f96fb7b) --- pkgs/tools/misc/xclip/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/xclip/default.nix b/pkgs/tools/misc/xclip/default.nix index 4afcc0ac36df..3671cb4e7898 100644 --- a/pkgs/tools/misc/xclip/default.nix +++ b/pkgs/tools/misc/xclip/default.nix @@ -1,14 +1,17 @@ -{ stdenv, fetchurl, x11, libXmu }: +{ stdenv, fetchsvn, x11, libXmu, autoconf, automake, libtool }: stdenv.mkDerivation rec { - name = "xclip-0.12"; + # The last release from 2012, 0.12, lacks '-targets' + name = "xclip-0.12-svn-20140209"; - src = fetchurl { - url = "mirror://sourceforge/xclip/${name}.tar.gz"; - sha256 = "0ibcf46rldnv0r424qcnai1fa5iq3lm5q5rdd7snsi5sb78gmixp"; + src = fetchsvn { + url = "svn://svn.code.sf.net/p/xclip/code/trunk"; + sha256 = "0d6r38xas5l79l700sdm14l41vvjqhah613367ha8kcvx54zkddz"; }; - buildInputs = [ x11 libXmu ]; + preConfigure = "autoreconf -vfi"; + + buildInputs = [ x11 libXmu autoconf automake libtool ]; meta = { description = "Tool to access the X clipboard from a console application";