xclip: 0.12-svn-20140209 -> 0.13

This commit is contained in:
José Romildo Malaquias 2016-09-19 20:21:05 -03:00 committed by Moritz Ulrich
parent fafff78d3d
commit c59d3cd849

View File

@ -1,20 +1,23 @@
{ stdenv, fetchsvn, xlibsWrapper, libXmu, autoreconfHook }: { stdenv, fetchFromGitHub, autoreconfHook, libXmu }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
# The last release from 2012, 0.12, lacks '-targets' name = "xclip-${version}";
name = "xclip-0.12-svn-20140209"; version = "0.13";
src = fetchsvn { src = fetchFromGitHub {
url = "svn://svn.code.sf.net/p/xclip/code/trunk"; owner = "astrand";
rev = "87"; repo = "xclip";
sha256 = "1rbcdgr73916wvzfgqjs1jhgzk8qs1yw2iiqy7ifrkjafhi37w6b"; rev = version;
sha256 = "0q0hmvcjlv8arhh1pzhja2wglyj6n7z209jnpnzd281kqqv4czcs";
}; };
buildInputs = [ xlibsWrapper libXmu autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libXmu ];
meta = { meta = {
description = "Tool to access the X clipboard from a console application"; description = "Tool to access the X clipboard from a console application";
homepage = http://sourceforge.net/projects/xclip/; homepage = https://github.com/astrand/xclip;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;
}; };