Merge pull request #474 from logann2019/autocutsel

Autocutsel
This commit is contained in:
viric 2013-04-22 10:32:37 -07:00
commit 4311ba66e0
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl, libX11, libXaw}:
let
name = "autocutsel-0.9.0";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://savannah.nongnu.org/download/autocutsel/${name}.tar.gz";
sha256 = "0hp335qq57l0kp58pfwb0bk930zx5497frq8y0lzr4icvk1fpw5y";
};
buildInputs = [ libX11 libXaw ];
installPhase = ''
mkdir -p $out/bin
cp autocutsel $out/bin/
'';
meta = {
homepage = "http://www.nongnu.org/autocutsel/";
description = "Autocutsel tracks changes in the server's cutbuffer and CLIPBOARD selection.";
license = "GPLv2+";
platforms = with stdenv.lib.platforms; all;
};
}

View File

@ -3050,6 +3050,8 @@ let
autoconf = callPackage ../development/tools/misc/autoconf { };
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
autocutsel = callPackage ../tools/X11/autocutsel{ };
automake = automake112x;