Remove meta.license hack

+2 -2
+1 -1
pkgs/applications/networking/mailreaders/mailpile/default.nix
··· 27 27 meta = with stdenv.lib; { 28 28 description = "A modern, fast web-mail client with user-friendly encryption and privacy features"; 29 29 homepage = https://www.mailpile.is/; 30 - license = map (getAttr "shortName") [ licenses.asl20 licenses.agpl3 ]; 30 + license = [ licenses.asl20 licenses.agpl3 ]; 31 31 platforms = platforms.linux; 32 32 maintainers = [ maintainers.iElectric ]; 33 33 };
+1 -1
pkgs/development/compilers/rustc/makeRustcDerivation.nix
··· 63 63 homepage = http://www.rust-lang.org/; 64 64 description = "A safe, concurrent, practical language"; 65 65 maintainers = with maintainers; [ madjar cstrahan wizeman globin ]; 66 - license = map (builtins.getAttr "shortName") [ licenses.mit licenses.asl20 ]; 66 + license = [ licenses.mit licenses.asl20 ]; 67 67 platforms = platforms.linux; 68 68 }; 69 69