about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-19 14:00:43 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-19 14:14:52 +0200
commitd8c9fa5043da74e93fd44a3375a6d8e1d9056ded (patch)
treede489612a5c9f123456c5c0cebf27ee7eb24171b
parent90912f8aa5eb0578e73754b9e871670863957c44 (diff)
downloadnixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar.gz
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar.bz2
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar.lz
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar.xz
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.tar.zst
nixlib-d8c9fa5043da74e93fd44a3375a6d8e1d9056ded.zip
Remove meta.license hack
-rw-r--r--pkgs/applications/networking/mailreaders/mailpile/default.nix2
-rw-r--r--pkgs/development/compilers/rustc/makeRustcDerivation.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/mailpile/default.nix b/pkgs/applications/networking/mailreaders/mailpile/default.nix
index 695e2b381576..c43944dc5979 100644
--- a/pkgs/applications/networking/mailreaders/mailpile/default.nix
+++ b/pkgs/applications/networking/mailreaders/mailpile/default.nix
@@ -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 ];
   };
diff --git a/pkgs/development/compilers/rustc/makeRustcDerivation.nix b/pkgs/development/compilers/rustc/makeRustcDerivation.nix
index 6208190f8dfd..9c95dbb1003a 100644
--- a/pkgs/development/compilers/rustc/makeRustcDerivation.nix
+++ b/pkgs/development/compilers/rustc/makeRustcDerivation.nix
@@ -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;
     };