nixpkgs/pkgs/tools/X11/autocutsel/default.nix

27 lines
605 B
Nix
Raw Normal View History

2013-04-20 16:21:01 +02:00
{stdenv, fetchurl, libX11, libXaw}:
let
name = "autocutsel-0.9.0";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://savannah/autocutsel/${name}.tar.gz";
2013-04-20 16:21:01 +02:00
sha256 = "0hp335qq57l0kp58pfwb0bk930zx5497frq8y0lzr4icvk1fpw5y";
};
buildInputs = [ libX11 libXaw ];
installPhase = ''
2013-04-22 19:23:50 +02:00
mkdir -p $out/bin
cp autocutsel $out/bin/
'';
2013-04-20 16:21:01 +02:00
meta = {
homepage = "http://www.nongnu.org/autocutsel/";
description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection";
2013-04-21 18:50:51 +02:00
license = "GPLv2+";
2013-04-20 16:21:01 +02:00
platforms = with stdenv.lib.platforms; all;
};
}