commit
4311ba66e0
26
pkgs/tools/X11/autocutsel/default.nix
Normal file
26
pkgs/tools/X11/autocutsel/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -3050,6 +3050,8 @@ let
|
|||||||
autoconf = callPackage ../development/tools/misc/autoconf { };
|
autoconf = callPackage ../development/tools/misc/autoconf { };
|
||||||
|
|
||||||
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
||||||
|
|
||||||
|
autocutsel = callPackage ../tools/X11/autocutsel{ };
|
||||||
|
|
||||||
automake = automake112x;
|
automake = automake112x;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user