summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-03-13 10:27:29 +0100
committerVladimír Čunát <v@cunat.cz>2020-03-13 10:28:33 +0100
commit93f690d64a5b5ba9150ec50de34456924597ba06 (patch)
treec3798a7dc0cc039b5c10267718ab89e0ff22e09c
parent7b15d6cee4839c5ef2e3a9fea355b6007f008820 (diff)
downloadnixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar.gz
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar.bz2
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar.lz
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar.xz
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.tar.zst
nixpkgs-93f690d64a5b5ba9150ec50de34456924597ba06.zip
redeclipse: fix meta.license
It was referring to the zlib package, as `with` has always lower
precedence than explicitly bound identifiers.
-rw-r--r--pkgs/games/redeclipse/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/redeclipse/default.nix b/pkgs/games/redeclipse/default.nix
index b9dd36903ae..fc6f50ef97e 100644
--- a/pkgs/games/redeclipse/default.nix
+++ b/pkgs/games/redeclipse/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
       environments.
     '';
     homepage = "https://www.redeclipse.net";
-    license = with licenses; [ zlib cc-by-sa-30 ];
+    license = with licenses; [ licenses.zlib cc-by-sa-30 ];
     maintainers = with maintainers; [ lambda-11235 ];
     platforms = platforms.linux;
     hydraPlatforms = [];