mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
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 { };
|
||||
|
||||
autoconf213 = callPackage ../development/tools/misc/autoconf/2.13.nix { };
|
||||
|
||||
autocutsel = callPackage ../tools/X11/autocutsel{ };
|
||||
|
||||
automake = automake112x;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user