nixpkgs/pkgs/tools/networking/ndjbdns/default.nix

26 lines
719 B
Nix
Raw Normal View History

2014-03-29 16:47:23 +00:00
{ stdenv, fetchurl, systemd, pkgconfig }:
stdenv.mkDerivation rec {
2016-07-16 19:53:15 +00:00
version = "1.06";
2014-03-29 16:47:23 +00:00
name = "ndjbdns-${version}";
2016-07-16 19:53:15 +00:00
2014-03-29 16:47:23 +00:00
src = fetchurl {
url = "http://pjp.dgplug.org/ndjbdns/${name}.tar.gz";
2016-07-16 19:53:15 +00:00
sha256 = "09qi5a9abqm08iqmxj74fzzq9x1w5lzr1jlbzj2hl8hz0g2sgraw";
2014-03-29 16:47:23 +00:00
};
buildInputs = [ pkgconfig systemd ];
meta = with stdenv.lib; {
2014-11-11 13:20:43 +00:00
description = "A brand new release of the Djbdns";
longDescription = ''
Djbdns is a fullyfledged Domain Name System(DNS), originally written by the eminent author of qmail, Dr. D J Bernstein.
'';
2014-03-29 16:47:23 +00:00
homepage = http://pjp.dgplug.org/ndjbdns/;
license = licenses.gpl2;
maintainers = [ maintainers.msackman ];
platforms = platforms.linux;
};
2016-07-16 19:53:15 +00:00
}