xapian(-bindings) use license path instead of string

svn path=/nixpkgs/trunk/; revision=30499
This commit is contained in:
Florian Friesdorf 2011-11-20 21:49:13 +00:00
parent 50bfde368e
commit b781b722ab
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ composableDerivation.composableDerivation {} rec {
meta = { meta = {
description = "Bindings for the Xapian library"; description = "Bindings for the Xapian library";
homepage = xapian.meta.homepage; homepage = xapian.meta.homepage;
license = "GPLv2+"; license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.chaoflow ]; maintainers = [ stdenv.lib.maintainers.chaoflow ];
}; };
} }

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation {
meta = { meta = {
description = "Xapian Probabilistic Information Retrieval library"; description = "Xapian Probabilistic Information Retrieval library";
homepage = "http://xapian.org"; homepage = "http://xapian.org";
license = "GPLv2+"; license = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.chaoflow ]; maintainers = [ stdenv.lib.maintainers.chaoflow ];
}; };
} }