nixpkgs/pkgs/tools/networking/pdnsd/default.nix
John Wiegley 010132e302 Change several package constraints from linux to unix
They all build on Darwin.
2014-04-12 16:01:16 -05:00

22 lines
567 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pdnsd-1.2.8-par";
src = fetchurl {
url = http://www.phys.uu.nl/~rombouts/pdnsd/releases/pdnsd-1.2.8-par.tar.gz;
sha256 = "0ki4xkklc5lqs2qfmww63dc2zax48x8acfw661206ps4kvhasg2z";
};
patchPhase = ''
sed -i 's/.*(cachedir).*/:/' Makefile.in
'';
meta = {
description = "Permanent DNS caching";
homepage = http://www.phys.uu.nl/~rombouts/pdnsd.html;
license = "GPLv3+";
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [viric];
};
}