From a8630eec1c034e0438099473a12a424ffc94ef36 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Mar 2019 11:57:50 +0100 Subject: [PATCH 1/5] arora: Add license Signed-off-by: Matthias Beyer --- pkgs/applications/networking/browsers/arora/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/arora/default.nix b/pkgs/applications/networking/browsers/arora/default.nix index f9d5f01be201..32de4871186f 100644 --- a/pkgs/applications/networking/browsers/arora/default.nix +++ b/pkgs/applications/networking/browsers/arora/default.nix @@ -21,5 +21,6 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.phreedom ]; description = "A cross-platform Qt4 Webkit browser"; homepage = https://github.com/Arora/arora; + license = with licenses; [ gpl2 gpl3 ]; }; } From 9daa25fc967cad214778f4eaadbdede3ac56251f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Mar 2019 12:00:00 +0100 Subject: [PATCH 2/5] aspectj: Add license Source: https://git.eclipse.org/c/aspectj/org.aspectj.git/tree/docs/build.xml#n7 Signed-off-by: Matthias Beyer --- pkgs/development/compilers/aspectj/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/aspectj/default.nix b/pkgs/development/compilers/aspectj/default.nix index f9e792260335..4b216761259d 100644 --- a/pkgs/development/compilers/aspectj/default.nix +++ b/pkgs/development/compilers/aspectj/default.nix @@ -16,5 +16,6 @@ stdenv.mkDerivation rec { homepage = http://www.eclipse.org/aspectj/; description = "A seamless aspect-oriented extension to the Java programming language"; platforms = stdenv.lib.platforms.unix; + license = stdenv.lib.licenses.epl10; }; } From 54f4958092eefe115ae6e4d17509f1fd340b93d0 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Mar 2019 12:01:57 +0100 Subject: [PATCH 3/5] atanks: Add license Source: https://sourceforge.net/p/atanks/atanks/ci/master/tree/COPYING Signed-off-by: Matthias Beyer --- pkgs/games/atanks/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/atanks/default.nix b/pkgs/games/atanks/default.nix index 05b645ee326b..de9eb9bbb580 100644 --- a/pkgs/games/atanks/default.nix +++ b/pkgs/games/atanks/default.nix @@ -18,5 +18,6 @@ stdenv.mkDerivation rec { homepage = http://atanks.sourceforge.net/; maintainers = [ maintainers.raskin ]; platforms = platforms.linux; + license = licenses.gpl2; }; } From 349921047e9e598bb2088df0694cc72a20f7b56c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Mar 2019 12:54:17 +0100 Subject: [PATCH 4/5] checkinstall: Add license Source: http://checkinstall.izto.org/docs/LICENSE Signed-off-by: Matthias Beyer --- pkgs/tools/package-management/checkinstall/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/package-management/checkinstall/default.nix b/pkgs/tools/package-management/checkinstall/default.nix index df1bf794062f..6605d9de65ae 100644 --- a/pkgs/tools/package-management/checkinstall/default.nix +++ b/pkgs/tools/package-management/checkinstall/default.nix @@ -69,5 +69,6 @@ stdenv.mkDerivation { description = "A tool for automatically generating Slackware, RPM or Debian packages when doing `make install'"; maintainers = [ stdenv.lib.maintainers.eelco ]; platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.gpl2; }; } From 60752bebcbe19a91bb9e6b3a4b8377abc394d564 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Mar 2019 14:24:57 +0100 Subject: [PATCH 5/5] clisp: Add license Source: http://ftp.gnu.org/pub/gnu/clisp/release/latest/clisp-2.49.tar.gz File: GNU-GPL Signed-off-by: Matthias Beyer --- pkgs/development/interpreters/clisp/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix index f850a9f57b80..5dcfa42c92fc 100644 --- a/pkgs/development/interpreters/clisp/default.nix +++ b/pkgs/development/interpreters/clisp/default.nix @@ -99,5 +99,6 @@ stdenv.mkDerivation rec { platforms = stdenv.lib.platforms.unix; # problems on Darwin: https://github.com/NixOS/nixpkgs/issues/20062 broken = stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.isAarch64; + license = stdenv.lib.licenses.gpl2; }; }