From 1200d893f8b22e9d4bbcf38b0ce72bcc23e2889e Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sun, 9 Apr 2023 13:21:02 +0200 Subject: [PATCH] fcft: add zlib license to list fcft bundles nanosvg in-tree and by default builds it into the library. nanosvg is licensed under the zlib license. Following the discussion on fnott [0] (which does the exact same), it was decided that the license meta-attr should reflect this situation by including the zlib license. There are other precedents as well, like the NixOS [1] and Debian [2] package for fuzzel. Thus, the same should be applied to fcft as well. [0] https://github.com/NixOS/nixpkgs/pull/225224 [1] https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/fuzzel/default.nix [2] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=982145#74 Signed-off-by: Christoph Heiss --- pkgs/development/libraries/fcft/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/fcft/default.nix b/pkgs/development/libraries/fcft/default.nix index 7b988a9ad86..d4a923add79 100644 --- a/pkgs/development/libraries/fcft/default.nix +++ b/pkgs/development/libraries/fcft/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { fionera sternenseemann ]; - license = licenses.mit; + license = with licenses; [ mit zlib ]; platforms = with platforms; linux; }; }