couchdb: add platform, remove maintainer that was added accidentally, fixes #12502

authored by obadz and committed by Rok Garbas 3a9983b4 e8cc9204

+4 -3
+4 -3
pkgs/servers/http/couchdb/default.nix
··· 41 --enable-js-trunk 42 ''; 43 44 - meta = { 45 description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API"; 46 homepage = "http://couchdb.apache.org"; 47 - license = stdenv.lib.licenses.asl20; 48 - maintainers = with stdenv.lib.maintainers; [ viric garbas ]; 49 }; 50 }
··· 41 --enable-js-trunk 42 ''; 43 44 + meta = with stdenv.lib; { 45 description = "A database that uses JSON for documents, JavaScript for MapReduce queries, and regular HTTP for an API"; 46 homepage = "http://couchdb.apache.org"; 47 + license = licenses.asl20; 48 + platform = platforms.all; 49 + maintainers = with maintainers; [ garbas ]; 50 }; 51 }