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

32 lines
869 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, systemd, pkg-config }:
2021-01-15 09:19:50 +00:00
with lib;
2014-03-29 16:47:23 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2016-07-16 19:53:15 +00:00
version = "1.06";
pname = "ndjbdns";
2016-07-16 19:53:15 +00:00
src = fetchFromGitHub {
owner = "pjps";
repo = "ndjbdns";
rev = "64d371b6f887621de7bf8bd495be10442b2accd0";
sha256 = "0gjyvn8r66kp49gasd6sqfvg2pj0c6v67hnq7cqwl04kj69rfy86";
2014-03-29 16:47:23 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ ]
++ optional stdenv.isLinux systemd;
2014-03-29 16:47:23 +00:00
meta = {
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.
'';
homepage = "http://pjp.dgplug.org/ndjbdns/";
2014-03-29 16:47:23 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.msackman ];
platforms = platforms.linux ++ platforms.darwin;
2014-03-29 16:47:23 +00:00
};
2016-07-16 19:53:15 +00:00
}