summary refs log tree commit diff
path: root/pkgs/development/libraries/c-ares
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-05-01 14:36:51 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-05-01 15:06:39 -0700
commit21fea99191905bb7ccb2412b41061e23dae62a38 (patch)
tree926ff231e1bda0d23f2bbc2e036e64dbe5294a6a /pkgs/development/libraries/c-ares
parent1d150637683b7cfcfcc3bfe8d4b4dda2afadb735 (diff)
downloadnixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar.gz
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar.bz2
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar.lz
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar.xz
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.tar.zst
nixlib-21fea99191905bb7ccb2412b41061e23dae62a38.zip
Fix some meta
Diffstat (limited to 'pkgs/development/libraries/c-ares')
-rw-r--r--pkgs/development/libraries/c-ares/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index 58e7c17f2495..678c7e151122 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -8,13 +8,11 @@ stdenv.mkDerivation rec {
     sha256 = "1nyka87yf2jfd0y6sspll0yxwb8zi7kyvajrdbjmh4axc5s1cw1x";
   };
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A C library for asynchronous DNS requests";
-
     homepage = http://c-ares.haxx.se;
-
-    license = stdenv.lib.licenses.mit;
-
-    maintainers = [ stdenv.lib.maintainers.shlevy ];
+    license = licenses.mit;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ shlevy ];
   };
 }