openclonk: fix license

The ISC license always applies, the unfree part only is added
additionally.
This commit is contained in:
Wolfgang Walther
2025-05-03 12:46:58 +02:00
parent ed76a25afe
commit 0022de84c1
+1 -1
View File
@@ -98,7 +98,7 @@ stdenv.mkDerivation {
meta = {
description = "Free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings";
homepage = "https://www.openclonk.org";
license = with lib.licenses; if enableSoundtrack then unfreeRedistributable else isc;
license = with lib.licenses; [ isc ] ++ lib.optional enableSoundtrack unfreeRedistributable;
mainProgram = "openclonk";
maintainers = [ ];
platforms = lib.platforms.linux;