mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
f5fa5fa4d6
* 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
20 lines
511 B
Nix
20 lines
511 B
Nix
{ stdenv, fetchurl, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xchainkeys-0.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://henning-bekel.de/download/xchainkeys/${name}.tar.gz";
|
|
sha256 = "1rpqs7h5krral08vqxwb0imy33z17v5llvrg5hy8hkl2ap7ya0mn";
|
|
};
|
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
meta = {
|
|
homepage = http://henning-bekel.de/xchainkeys/;
|
|
description = "A standalone X11 program to create chained key bindings";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|