Update autocutsel

This commit is contained in:
Michael Raskin 2014-07-04 21:51:43 +04:00
parent b243ef6bef
commit 94e11b2f91
1 changed files with 7 additions and 7 deletions

View File

@ -1,14 +1,12 @@
{stdenv, fetchurl, libX11, libXaw}: {stdenv, fetchurl, libX11, libXaw}:
let stdenv.mkDerivation rec {
name = "autocutsel-0.9.0"; version = "0.10.0";
in name = "autocutsel-${version}";
stdenv.mkDerivation {
inherit name;
src = fetchurl { src = fetchurl {
url = "mirror://savannah/autocutsel/${name}.tar.gz"; url = "https://github.com/sigmike/autocutsel/releases/download/${version}/${name}.tar.gz";
sha256 = "0hp335qq57l0kp58pfwb0bk930zx5497frq8y0lzr4icvk1fpw5y"; sha256 = "0gsys2dzh4az51ndcsabhlbbrjn2nm75lnjr45kg6r8sm8q66dx2";
}; };
buildInputs = [ libX11 libXaw ]; buildInputs = [ libX11 libXaw ];
@ -18,9 +16,11 @@ stdenv.mkDerivation {
''; '';
meta = { meta = {
inherit version;
homepage = "http://www.nongnu.org/autocutsel/"; homepage = "http://www.nongnu.org/autocutsel/";
description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection"; description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection";
license = "GPLv2+"; license = "GPLv2+";
platforms = with stdenv.lib.platforms; all; platforms = with stdenv.lib.platforms; all;
updateWalker = true;
}; };
} }