Skip to content

Commit

Permalink
Merge pull request #314833 from Lurkki14/gpl2-pkgs-os-specific
Browse files Browse the repository at this point in the history
pkgs/os-specific: remove licenses.gpl2
  • Loading branch information
Aleksanaa committed Jun 21, 2024
2 parents 243418e + 95cc312 commit d6ebba3
Show file tree
Hide file tree
Showing 132 changed files with 132 additions and 132 deletions.
2 changes: 1 addition & 1 deletion pkgs/os-specific/darwin/noah/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Bash on Ubuntu on macOS";
homepage = "https://github.com/linux-noah/noah";
license = [ licenses.mit licenses.gpl2 ];
license = [ licenses.mit licenses.gpl2Only ];
maintainers = [ ];
platforms = platforms.darwin;
# never built on aarch64-darwin since first introduction in nixpkgs
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/darwin/osx-cpu-temp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Outputs current CPU temperature for OSX";
homepage = "https://github.com/lavoiesl/osx-cpu-temp";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ virusdave ];
platforms = platforms.darwin;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/afuse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Automounter in userspace";
homepage = "https://github.com/pcarrier/afuse";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.unix;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/anbox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://anbox.io";
description = "Android in a box";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ edwtjo ];
platforms = [ "armv7l-linux" "aarch64-linux" "x86_64-linux" ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/asus-ec-sensors/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Linux HWMON sensors driver for ASUS motherboards to read sensor data from the embedded controller";
homepage = "https://github.com/zeule/asus-ec-sensors";
license = licenses.gpl2;
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ nickhu ];
broken = kernel.kernelOlder "5.11";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/asus-wmi-sensors/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Linux HWMON (lmsensors) sensors driver for various ASUS Ryzen and Threadripper motherboards";
homepage = "https://github.com/electrified/asus-wmi-sensors";
license = licenses.gpl2;
license = licenses.gpl2Only;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ Frostman ];
broken = versionOlder kernel.version "4.12";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/ax99100/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ stdenv.mkDerivation {
description = "ASIX AX99100 Serial and Parallel Port driver";
homepage = "https://www.asix.com.tw/en/product/Interface/PCIe_Bridge/AX99100";
# According to the source code in the tarball, the license is gpl2.
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;

# Older Linux versions need more patches to work.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/batman-adv/alfred.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki";
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, information distribution tool";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fpletz ];
platforms = with lib.platforms; linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/batman-adv/batctl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki";
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, control tool";
mainProgram = "batctl";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fpletz ];
platforms = with lib.platforms; linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/batman-adv/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki";
description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fpletz philiptaron ];
platforms = with lib.platforms; linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/bpftools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/libbpf/bpftool";
description = "Debugging/program analysis tools for the eBPF subsystem";
license = [ licenses.gpl2 licenses.bsd2 ];
license = [ licenses.gpl2Only licenses.bsd2 ];
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/can-isotp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation {
broken = kernel.kernelAtLeast "5.16";
description = "Kernel module for ISO-TP (ISO 15765-2)";
homepage = "https://github.com/hartkopp/can-isotp";
license = licenses.gpl2;
license = licenses.gpl2Only;
platforms = platforms.linux;
maintainers = [ maintainers.evck ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/cpupower/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ stdenv.mkDerivation {
meta = with lib; {
description = "Tool to examine and tune power saving features";
homepage = "https://www.kernel.org/";
license = licenses.gpl2;
license = licenses.gpl2Only;
mainProgram = "cpupower";
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/cramfsprogs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Tools to create, check, and extract content of CramFs images";
homepage = "https://packages.debian.org/jessie/cramfsprogs";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pamplemousse ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/criu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Userspace checkpoint/restore for Linux";
homepage = "https://criu.org";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" ];
maintainers = [ maintainers.thoughtpolice ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/cryptsetup/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.com/cryptsetup/cryptsetup/";
description = "LUKS for dm-crypt";
changelog = "https://gitlab.com/cryptsetup/cryptsetup/-/raw/v${version}/docs/v${version}-ReleaseNotes";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Plus;
mainProgram = "cryptsetup";
maintainers = with lib.maintainers; [ raitobezarius ];
platforms = with lib.platforms; linux;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/digimend/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "DIGImend graphics tablet drivers for the Linux kernel";
homepage = "https://digimend.github.io/";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ gebner ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/directvnc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation {
meta = with lib; {
description = "DirectFB VNC client";
homepage = "http:https://drinkmilk.github.io/directvnc/";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/dpdk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Set of libraries and drivers for fast packet processing";
homepage = "http:https://dpdk.org/";
license = with licenses; [ lgpl21 gpl2 bsd2 ];
license = with licenses; [ lgpl21 gpl2Only bsd2 ];
platforms = platforms.linux;
maintainers = with maintainers; [ magenbluten orivej mic92 zhaofengli ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/dstat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
homepage = "http:https://dag.wieers.com/home-made/dstat/";
description = "Versatile resource statistics tool";
mainProgram = "dstat";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
changelog = "https://github.com/dstat-real/dstat/blob/v${version}/ChangeLog";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/e1000e/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
meta = {
description = "Linux kernel drivers for Intel Ethernet adapters and LOMs (LAN On Motherboard)";
homepage = "http:https://e1000.sf.net/";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/ebtables/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Filtering tool for Linux-based bridging firewalls";
homepage = "http:https://ebtables.sourceforge.net/";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/edac-utils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://github.com/grondo/edac-utils";
description = "Handles the reporting of hardware-related memory errors";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/eventstat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Simple monitoring of system events";
mainProgram = "eventstat";
homepage = "https://github.com/ColinIanKing/eventstat";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/exfat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = {
description = "exfat kernel module";
inherit (src.meta) homepage;
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ makefu ];
platforms = lib.platforms.linux;
broken = true;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/facetimehd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/patjak/bcwc_pcie";
description = "Linux driver for the Facetime HD (Broadcom 1570) PCIe webcam";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ womfoo grahamc kraem ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/fbterm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ stdenv.mkDerivation rec {
mainProgram = "fbterm";
homepage = "https://salsa.debian.org/debian/fbterm";
maintainers = with maintainers; [ lovesegfault raskin ];
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/firmware/zd1211/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ stdenvNoCC.mkDerivation rec {
meta = {
description = "Firmware for the ZyDAS ZD1211(b) 802.11a/b/g USB WLAN chip";
homepage = "https://sourceforge.net/projects/zd1211/";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/forkstat/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "Process fork/exec/exit monitoring tool";
mainProgram = "forkstat";
homepage = "https://github.com/ColinIanKing/forkstat";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/forktty/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ stdenv.mkDerivation rec {

meta = with lib; {
description = "Tool to detach from controlling TTY and attach to another";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/framework-laptop-kmod/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Kernel module that exposes the Framework Laptop (13, 16)'s battery charge limit and LEDs to userspace";
homepage = "https://github.com/DHowett/framework-laptop-kmod";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ gaykitty ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/fswebcam/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
mainProgram = "fswebcam";
homepage = "http:https://www.sanslogic.co.uk/fswebcam";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/fwts/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
homepage = "https://wiki.ubuntu.com/FirmwareTestSuite";
description = "Firmware Test Suite";
platforms = platforms.linux;
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ tadfisher ];
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/g15daemon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
, libusb-compat-0_1
}:
let
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ peterhoeg ];

g15src = { pname, version, sha256 }: fetchurl {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/gasket/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Coral Gasket Driver allows usage of the Coral EdgeTPU on Linux systems";
homepage = "https://github.com/google/gasket-driver";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = [ lib.maintainers.kylehendricks ];
platforms = platforms.linux;
broken = versionOlder kernel.version "5.15";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/gcadapter-oc-kmod/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ in stdenv.mkDerivation rec {
meta = with lib; {
description = "Kernel module for overclocking the Nintendo Wii U/Mayflash GameCube adapter";
homepage = "https://github.com/HannesMann/gcadapter-oc-kmod";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ r-burns ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/gobi_loader/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Firmware loader for Qualcomm Gobi USB chipsets";
homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
license = with licenses; [ gpl2 ];
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ _0x4A6F ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/hdapsd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
{ description = "Hard Drive Active Protection System Daemon";
mainProgram = "hdapsd";
homepage = "http:https://hdaps.sf.net/";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ehmry ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/health-check/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Process monitoring tool";
mainProgram = "health-check";
homepage = "https://github.com/ColinIanKing/health-check";
license = licenses.gpl2;
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill ];
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/hostapd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://w1.fi/hostapd/";
description = "User space daemon for access point and authentication servers";
license = licenses.gpl2;
license = licenses.bsd3;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/i7z/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
description = "Better i7 (and now i3, i5) reporting tool for Linux";
mainProgram = "i7z";
homepage = "https://github.com/DimitryAndric/i7z";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ bluescreen303 ];
# broken on ARM
platforms = [ "x86_64-linux" ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/i810switch/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation {
description = "Utility for switching between the LCD and external VGA display on Intel graphics cards";
homepage = "http:https://www16.plala.or.jp/mano-a-mano/i810switch.html";
maintainers = with maintainers; [ ];
license = licenses.gpl2;
license = licenses.gpl2Only;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/ifenslave/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Utility for enslaving networking interfaces under a bond";
mainProgram = "ifenslave";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/ima-evm-utils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
description = "evmctl utility to manage digital signatures of the Linux kernel integrity subsystem (IMA/EVM)";
mainProgram = "evmctl";
homepage = "https://sourceforge.net/projects/linux-ima/";
license = lib.licenses.gpl2;
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ nickcao ];
};
Expand Down
Loading

0 comments on commit d6ebba3

Please sign in to comment.