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

This commit is contained in:
obadz 2016-01-20 16:50:15 +00:00 committed by Rok Garbas
parent e8cc9204a8
commit 3a9983b45d

View file

@ -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 ];
};
}