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 {
# The last release from 2012, 0.12, lacks '-targets'
name = "xclip-0.12-svn-20140209";
name = "xclip-${version}";
version = "0.13";
src = fetchsvn {
url = "svn://svn.code.sf.net/p/xclip/code/trunk";
rev = "87";
sha256 = "1rbcdgr73916wvzfgqjs1jhgzk8qs1yw2iiqy7ifrkjafhi37w6b";
src = fetchFromGitHub {
owner = "astrand";
repo = "xclip";
rev = version;
sha256 = "0q0hmvcjlv8arhh1pzhja2wglyj6n7z209jnpnzd281kqqv4czcs";
};
buildInputs = [ xlibsWrapper libXmu autoreconfHook ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libXmu ];
meta = {
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;
platforms = stdenv.lib.platforms.all;
};