summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-04-20 16:42:12 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2017-04-23 18:08:21 -0500
commit5042d931781081c4791c004cbb11d94f92b86447 (patch)
tree5f596b2c8dba1595a883a8b230596cc62b957a1b
parent9f4f4f006b45116bddf5e82fde46d183640db381 (diff)
downloadnixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar.gz
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar.bz2
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar.lz
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar.xz
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.tar.zst
nixpkgs-5042d931781081c4791c004cbb11d94f92b86447.zip
libconfig: supports darwin
-rw-r--r--pkgs/development/libraries/libconfig/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libconfig/default.nix b/pkgs/development/libraries/libconfig/default.nix
index df18ae06ed6..7c569b2e92d 100644
--- a/pkgs/development/libraries/libconfig/default.nix
+++ b/pkgs/development/libraries/libconfig/default.nix
@@ -14,6 +14,6 @@ stdenv.mkDerivation rec {
     description = "A simple library for processing structured configuration files";
     license = licenses.lgpl3;
     maintainers = [ maintainers.goibhniu ];
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
   };
 }