nixpkgs/pkgs/tools/networking/ahcpd/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

23 lines
623 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "ahcpd-0.53";
src = fetchurl {
url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz";
sha256 = "0lhdmky3zdyk51hclv2lrhw3hzymbdc8bw2khs3rnaibgn0jwqm4";
};
preBuild = ''
makeFlags="PREFIX=$out ETCDIR=$out/etc"
sed -i -e s,etc,$out/etc, Makefile
'';
meta = {
homepage = http://www.pps.univ-paris-diderot.fr/~jch/software/ahcp/;
description = "Autoconfiguration protocol for IPv6 and dual-stack IPv6/IPv4 networks";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux;
};
}