summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorobadz <dav-github@odav.org>2016-01-20 16:50:15 +0000
committerRok Garbas <rok@garbas.si>2016-01-24 14:39:47 +0100
commit3a9983b45d3d5f67ffccf924179cf4bc4bc104e2 (patch)
tree6ebd3480ab9f3fc33f8a3c018a450906aecbd3f2 /pkgs/servers
parente8cc9204a85a871e35014f578536a362fcd1c682 (diff)
downloadnixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar.gz
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar.bz2
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar.lz
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar.xz
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.tar.zst
nixlib-3a9983b45d3d5f67ffccf924179cf4bc4bc104e2.zip
couchdb: add platform, remove maintainer that was added accidentally, fixes #12502
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/couchdb/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/http/couchdb/default.nix b/pkgs/servers/http/couchdb/default.nix
index 54412d2ab400..8b3edb27c17f 100644
--- a/pkgs/servers/http/couchdb/default.nix
+++ b/pkgs/servers/http/couchdb/default.nix
@@ -41,10 +41,11 @@ stdenv.mkDerivation rec {
     --enable-js-trunk
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API";
     homepage = "http://couchdb.apache.org";
-    license = stdenv.lib.licenses.asl20;
-    maintainers = with stdenv.lib.maintainers; [ viric garbas ];
+    license = licenses.asl20;
+    platform = platforms.all;
+    maintainers = with maintainers; [ garbas ];
   };
 }