Merge pull request #143212 from NixOS/backport-132008-to-release-21.05

[Backport release-21.05] multimc: don't re-distribute package
This commit is contained in:
figsoda 2021-10-27 15:20:58 -04:00 committed by GitHub
commit dcdd69dcdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,10 @@ in mkDerivation rec {
Allows you to have multiple, separate instances of Minecraft (each with their own mods, texture packs, saves, etc) and helps you manage them and their associated options with a simple interface. Allows you to have multiple, separate instances of Minecraft (each with their own mods, texture packs, saves, etc) and helps you manage them and their associated options with a simple interface.
''; '';
platforms = platforms.linux; platforms = platforms.linux;
license = licenses.lgpl21Plus; license = licenses.asl20;
# upstream don't want us to re-distribute this application:
# https://github.com/NixOS/nixpkgs/issues/131983
hydraPlatforms = [];
maintainers = with maintainers; [ cleverca22 starcraft66 ]; maintainers = with maintainers; [ cleverca22 starcraft66 ];
}; };
} }