From c8f5ce18fadf55c04bf0cbffff2ab404edad05f1 Mon Sep 17 00:00:00 2001 From: yurkobb Date: Sun, 9 May 2021 22:30:01 +0300 Subject: [PATCH] assaultcube licensing: mark unfree The license of AssaultCube as a whole is not zlib, it's freeware, see: https://assault.cubers.net/docs/license.html closes #121381 --- pkgs/games/assaultcube/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/assaultcube/default.nix b/pkgs/games/assaultcube/default.nix index a2c00ddc149..640ea81c6c6 100644 --- a/pkgs/games/assaultcube/default.nix +++ b/pkgs/games/assaultcube/default.nix @@ -67,6 +67,6 @@ stdenv.mkDerivation rec { homepage = "https://assault.cubers.net"; maintainers = [ ]; platforms = platforms.linux; # should work on darwin with a little effort. - license = lib.licenses.zlib; + license = lib.licenses.unfree; }; }