From 7344ae11ab37423865c34533d317ebeb2c2feb4d Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sat, 8 Apr 2023 16:47:37 +0200 Subject: [PATCH] fnott: add zlib license to list fnott bundles nanosvg in-tree and builds with it, which is licensed under the zlib license. The `license` meta-attr should reflect this (as this more or less means nanosvg is part of the project), thus add the zlib license to it. See the pull-request discussion [0] and other precedents like [1]. [0] https://github.com/NixOS/nixpkgs/pull/225224 [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=982145#74 Signed-off-by: Christoph Heiss --- pkgs/applications/misc/fnott/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/fnott/default.nix b/pkgs/applications/misc/fnott/default.nix index 5a76ef9028ed..311e532c1267 100644 --- a/pkgs/applications/misc/fnott/default.nix +++ b/pkgs/applications/misc/fnott/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://codeberg.org/dnkl/fnott"; description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors"; - license = licenses.mit; + license = with licenses; [ mit zlib ]; maintainers = with maintainers; [ polykernel ]; platforms = platforms.linux; };