3
0
Fork 0
forked from mirrors/nixpkgs

Remove meta.license hack

This commit is contained in:
Eelco Dolstra 2015-06-19 14:00:43 +02:00
parent 90912f8aa5
commit d8c9fa5043
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ pythonPackages.buildPythonPackage rec {
meta = with stdenv.lib; {
description = "A modern, fast web-mail client with user-friendly encryption and privacy features";
homepage = https://www.mailpile.is/;
license = map (getAttr "shortName") [ licenses.asl20 licenses.agpl3 ];
license = [ licenses.asl20 licenses.agpl3 ];
platforms = platforms.linux;
maintainers = [ maintainers.iElectric ];
};

View file

@ -63,7 +63,7 @@ let version = if isRelease then
homepage = http://www.rust-lang.org/;
description = "A safe, concurrent, practical language";
maintainers = with maintainers; [ madjar cstrahan wizeman globin ];
license = map (builtins.getAttr "shortName") [ licenses.mit licenses.asl20 ];
license = [ licenses.mit licenses.asl20 ];
platforms = platforms.linux;
};