tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Remove meta.license hack
Eelco Dolstra
10 years ago
d8c9fa50
90912f8a
+2
-2
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
mailreaders
mailpile
default.nix
development
compilers
rustc
makeRustcDerivation.nix
+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
30
-
license = map (getAttr "shortName") [ licenses.asl20 licenses.agpl3 ];
30
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
66
-
license = map (builtins.getAttr "shortName") [ licenses.mit licenses.asl20 ];
66
66
+
license = [ licenses.mit licenses.asl20 ];
67
67
platforms = platforms.linux;
68
68
};
69
69