aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/ndjbdns
diff options
context:
space:
mode:
authorFlorian <fmu@users.noreply.github.com>2016-07-29 12:55:35 +0200
committerFlorian <fmu@users.noreply.github.com>2016-07-29 12:55:35 +0200
commit67337972484fbf4cc9870a8376837b4c46e23f89 (patch)
tree72d6864758012bb6ecce9ea4728698d8411108dd /pkgs/tools/networking/ndjbdns
parent2fa9bd50597c3089cc00abb3f20d7510fcc8ad6a (diff)
ndjbdns: build from latest sources which adds Darwin compatibility
Diffstat (limited to 'pkgs/tools/networking/ndjbdns')
-rw-r--r--pkgs/tools/networking/ndjbdns/default.nix19
1 files changed, 12 insertions, 7 deletions
diff --git a/pkgs/tools/networking/ndjbdns/default.nix b/pkgs/tools/networking/ndjbdns/default.nix
index 256f50e5c546..3269f92d7f42 100644
--- a/pkgs/tools/networking/ndjbdns/default.nix
+++ b/pkgs/tools/networking/ndjbdns/default.nix
@@ -1,17 +1,22 @@
-{ stdenv, fetchurl, systemd, pkgconfig }:
+{ stdenv, fetchFromGitHub, autoreconfHook, systemd, pkgconfig }:
+
+with stdenv.lib;
stdenv.mkDerivation rec {
version = "1.06";
name = "ndjbdns-${version}";
- src = fetchurl {
- url = "http://pjp.dgplug.org/ndjbdns/${name}.tar.gz";
- sha256 = "09qi5a9abqm08iqmxj74fzzq9x1w5lzr1jlbzj2hl8hz0g2sgraw";
+ src = fetchFromGitHub {
+ owner = "pjps";
+ repo = "ndjbdns";
+ rev = "64d371b6f887621de7bf8bd495be10442b2accd0";
+ sha256 = "0gjyvn8r66kp49gasd6sqfvg2pj0c6v67hnq7cqwl04kj69rfy86";
};
- buildInputs = [ pkgconfig systemd ];
+ buildInputs = [ autoreconfHook pkgconfig ]
+ ++ optional stdenv.isLinux systemd;
- meta = with stdenv.lib; {
+ meta = {
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.
@@ -19,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = http://pjp.dgplug.org/ndjbdns/;
license = licenses.gpl2;
maintainers = [ maintainers.msackman ];
- platforms = platforms.linux;
+ platforms = platforms.linux ++ platforms.darwin;
};
}