tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
licenses: remove fdl13
Weijia Wang
3 years ago
79f51744
06d0490a
+6
-11
7 changed files
expand all
collapse all
unified
split
lib
licenses.nix
maintainers
scripts
nix-generate-from-cpan.pl
pkgs
development
libraries
qt-5
modules
qtbase.nix
qtModule.nix
qt-6
modules
qtbase.nix
qtModule.nix
qt-mobility
default.nix
-5
lib/licenses.nix
···
985
985
fullName = "GNU Affero General Public License v3.0";
986
986
deprecated = true;
987
987
};
988
988
-
fdl13 = {
989
989
-
spdxId = "GFDL-1.3";
990
990
-
fullName = "GNU Free Documentation License v1.3";
991
991
-
deprecated = true;
992
992
-
};
993
988
gpl2 = {
994
989
spdxId = "GPL-2.0";
995
990
fullName = "GNU General Public License v2.0";
+1
-1
maintainers/scripts/nix-generate-from-cpan.pl
···
66
66
67
67
# GNU Free Documentation License, Version 1.3.
68
68
gfdl_1_3 => {
69
69
-
licenses => [qw( fdl13 )]
69
69
+
licenses => [qw( fdl13Plus )]
70
70
},
71
71
72
72
# GNU General Public License, Version 1.
+1
-1
pkgs/development/libraries/qt-5/modules/qtbase.nix
···
368
368
meta = with lib; {
369
369
homepage = "https://www.qt.io/";
370
370
description = "A cross-platform application framework for C++";
371
371
-
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
371
371
+
license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ];
372
372
maintainers = with maintainers; [ qknight ttuegel periklis bkchr ];
373
373
platforms = platforms.unix;
374
374
# Qt5 is broken on aarch64-darwin
+1
-1
pkgs/development/libraries/qt-5/qtModule.nix
···
70
70
meta = {
71
71
homepage = "https://www.qt.io";
72
72
description = "A cross-platform application framework for C++";
73
73
-
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
73
73
+
license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ];
74
74
maintainers = with maintainers; [ qknight ttuegel periklis bkchr ];
75
75
platforms = platforms.unix;
76
76
} // (args.meta or {});
+1
-1
pkgs/development/libraries/qt-6/modules/qtbase.nix
···
257
257
meta = with lib; {
258
258
homepage = "https://www.qt.io/";
259
259
description = "A cross-platform application framework for C++";
260
260
-
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
260
260
+
license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ];
261
261
maintainers = with maintainers; [ milahu nickcao LunNova ];
262
262
platforms = platforms.linux;
263
263
};
+1
-1
pkgs/development/libraries/qt-6/qtModule.nix
···
81
81
meta = with lib; {
82
82
homepage = "https://www.qt.io/";
83
83
description = "A cross-platform application framework for C++";
84
84
-
license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ];
84
84
+
license = with licenses; [ fdl13Plus gpl2Plus lgpl21Plus lgpl3Plus ];
85
85
maintainers = with maintainers; [ milahu nickcao ];
86
86
platforms = platforms.linux;
87
87
} // (args.meta or { });
+1
-1
pkgs/development/libraries/qt-mobility/default.nix
···
47
47
homepage = "http://qt.nokia.com/products/qt-addons/mobility";
48
48
maintainers = [ maintainers.qknight ];
49
49
platforms = platforms.linux;
50
50
-
license = with licenses; [ bsd3 fdl13 gpl3 lgpl21 ];
50
50
+
license = with licenses; [ bsd3 fdl13Plus gpl3Plus lgpl21Plus ];
51
51
};
52
52
}
53
53