From 9dcf51fae3ea374f046af31c435c12964161df61 Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Fri, 5 Apr 2024 17:03:39 +0200 Subject: [PATCH] limine: add all licenses of used submodules --- pkgs/by-name/li/limine/package.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/li/limine/package.nix b/pkgs/by-name/li/limine/package.nix index cb50927a3dd1..cb1beb378a7b 100644 --- a/pkgs/by-name/li/limine/package.nix +++ b/pkgs/by-name/li/limine/package.nix @@ -48,7 +48,13 @@ stdenv.mkDerivation { homepage = "https://limine-bootloader.org/"; description = "Limine Bootloader"; # Caution. Some submodules have different licenses. - license = licenses.bsd2; + license = [ + licenses.bsd2 # limine, flanterm + licenses.bsd0 # freestanding-toolchain, freestanding-headers + licenses.asl20 # cc-runtime + licenses.mit # limine-efi, stb + licenses.zlib # tinf + ]; # The platforms on that the Liminine binary and helper tools can run, not # necessarily the platforms for that bootable images can be created. platforms = platforms.unix;