summary refs log tree commit diff
path: root/pkgs/tools/networking/ndjbdns/default.nix
blob: 256f50e5c5464e00a7b2419a6d806967fe6df5d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, systemd, pkgconfig }:

stdenv.mkDerivation rec {
  version = "1.06";
  name = "ndjbdns-${version}";

  src = fetchurl {
    url = "http://pjp.dgplug.org/ndjbdns/${name}.tar.gz";
    sha256 = "09qi5a9abqm08iqmxj74fzzq9x1w5lzr1jlbzj2hl8hz0g2sgraw";
  };

  buildInputs = [ pkgconfig systemd ];

  meta = with stdenv.lib; {
    description = "A brand new release of the Djbdns";
    longDescription = ''
      Djbdns is a fully‐fledged Domain Name System(DNS), originally written by the eminent author of qmail, Dr. D J Bernstein.
    '';
    homepage = http://pjp.dgplug.org/ndjbdns/;
    license = licenses.gpl2;
    maintainers = [ maintainers.msackman ];
    platforms = platforms.linux;
  };

}