summary refs log tree commit diff
path: root/pkgs/development/libraries/ldns
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2018-12-10 16:43:24 -0600
committerPatrick Mahoney <pat@polycrystal.org>2018-12-10 16:46:34 -0600
commit189fbae95b4f328287777e6e752a20f67f6d3eef (patch)
treebfc0afd1bcd8432b154bd271e069539974346c08 /pkgs/development/libraries/ldns
parent475d653afdbd8fe3e00ccfd22a30014b0df7aeaa (diff)
downloadnixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar.gz
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar.bz2
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar.lz
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar.xz
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.tar.zst
nixpkgs-189fbae95b4f328287777e6e752a20f67f6d3eef.zip
ldns: relax platform requirements
Seems to have built OK on darwin. I only needed it to build freeswitch
though, so not sure how to test functionality. I successfully ran the
`drill` command.
Diffstat (limited to 'pkgs/development/libraries/ldns')
-rw-r--r--pkgs/development/libraries/ldns/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/ldns/default.nix b/pkgs/development/libraries/ldns/default.nix
index c4120e5bb0e..468ab90edb5 100644
--- a/pkgs/development/libraries/ldns/default.nix
+++ b/pkgs/development/libraries/ldns/default.nix
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
     description = "Library with the aim of simplifying DNS programming in C";
     license = licenses.bsd3;
     homepage = http://www.nlnetlabs.nl/projects/ldns/;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ jgeerds ];
   };
 }