nixpkgs/pkgs/tools/X11/autocutsel/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

27 lines
715 B
Nix

{stdenv, fetchurl, libX11, libXaw}:
stdenv.mkDerivation rec {
version = "0.10.0";
name = "autocutsel-${version}";
src = fetchurl {
url = "https://github.com/sigmike/autocutsel/releases/download/${version}/${name}.tar.gz";
sha256 = "0gsys2dzh4az51ndcsabhlbbrjn2nm75lnjr45kg6r8sm8q66dx2";
};
buildInputs = [ libX11 libXaw ];
installPhase = ''
mkdir -p $out/bin
cp autocutsel $out/bin/
'';
meta = {
inherit version;
homepage = http://www.nongnu.org/autocutsel/;
description = "Tracks changes in the server's cutbuffer and CLIPBOARD selection";
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; all;
updateWalker = true;
};
}