mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
pkgs/os-specific: remove licenses.gpl2
This commit is contained in:
parent
560737213b
commit
95cc312a68
@ -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
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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" ];
|
||||
};
|
||||
|
@ -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";
|
||||
|
@ -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";
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation {
|
||||
meta = with lib; {
|
||||
description = "DirectFB VNC client";
|
||||
homepage = "http://drinkmilk.github.io/directvnc/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = [ maintainers.raskin ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Set of libraries and drivers for fast packet processing";
|
||||
homepage = "http://dpdk.org/";
|
||||
license = with licenses; [ lgpl21 gpl2 bsd2 ];
|
||||
license = with licenses; [ lgpl21 gpl2Only bsd2 ];
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ magenbluten orivej mic92 zhaofengli ];
|
||||
};
|
||||
|
@ -35,7 +35,7 @@ python3Packages.buildPythonApplication rec {
|
||||
homepage = "http://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";
|
||||
|
@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "Linux kernel drivers for Intel Ethernet adapters and LOMs (LAN On Motherboard)";
|
||||
homepage = "http://e1000.sf.net/";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Filtering tool for Linux-based bridging firewalls";
|
||||
homepage = "http://ebtables.sourceforge.net/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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; [ ];
|
||||
};
|
||||
|
@ -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;
|
||||
|
@ -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" ];
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
|
||||
mainProgram = "fswebcam";
|
||||
homepage = "http://www.sanslogic.co.uk/fswebcam";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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";
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
{ description = "Hard Drive Active Protection System Daemon";
|
||||
mainProgram = "hdapsd";
|
||||
homepage = "http://hdaps.sf.net/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.ehmry ];
|
||||
};
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -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" ];
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
description = "Utility for switching between the LCD and external VGA display on Intel graphics cards";
|
||||
homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html";
|
||||
maintainers = with maintainers; [ ];
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
||||
description = "Tool to enumerate and control the Intel Speed Select Technology features";
|
||||
mainProgram = "intel-speed-select";
|
||||
homepage = "https://www.kernel.org/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = [ "i686-linux" "x86_64-linux" ]; # x86-specific
|
||||
broken = kernel.kernelAtLeast "5.18";
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ python3Packages.buildPythonApplication rec {
|
||||
meta = with lib; {
|
||||
description = "Tool to find out the processes doing the most IO";
|
||||
homepage = "http://guichaz.free.fr/iotop";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
mainProgram = "iotop";
|
||||
maintainers = [ maintainers.raskin ];
|
||||
platforms = platforms.linux;
|
||||
|
@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://wiki.linuxfoundation.org/networking/iproute2";
|
||||
description = "Collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ primeos eelco fpletz globin ];
|
||||
};
|
||||
}
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
homepage = "https://ipset.netfilter.org/";
|
||||
description = "Administration tool for IP sets";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://www.netfilter.org/projects/iptables/index.html";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
downloadPage = "https://www.netfilter.org/projects/iptables/files/";
|
||||
};
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "https://github.com/intel/ipu6-drivers";
|
||||
description = "IPU6 kernel driver";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
# requires 6.1.7 https://github.com/intel/ipu6-drivers/pull/84
|
||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Linux Virtual Server support programs";
|
||||
homepage = "http://www.linuxvirtualserver.org/software/ipvs.html";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "https://github.com/intel/ivsc-driver";
|
||||
description = "Intel Vision Sensing Controller kernel driver";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
broken = kernel.kernelOlder "5.15";
|
||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Intel 82599 Virtual Function Driver";
|
||||
homepage = "https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
priority = 20;
|
||||
# kernels ship ixgbevf driver for a long time already, maybe switch to a newest kernel?
|
||||
broken = versionAtLeast kernel.version "5.2";
|
||||
|
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
||||
homepage = "https://www.jool.mx/";
|
||||
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
};
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = "https://github.com/cladisch/linux-firewire-utils";
|
||||
description = "Utilities around FireWire devices connected to a Linux computer";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ let
|
||||
|
||||
meta = with lib; {
|
||||
description = "Header files and scripts for Linux kernel";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
};
|
||||
|
@ -19,6 +19,6 @@ stdenv.mkDerivation {
|
||||
description = "Linux tools to inspect the gpiochip interface";
|
||||
maintainers = with maintainers; [ kwohlfahrt ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
|
||||
"riscv64-linux" "riscv32-linux"
|
||||
"sparc-linux" "sparc64-linux"
|
||||
];
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Userspace utilities for the ksmbd kernel SMB server";
|
||||
homepage = "https://www.kernel.org/doc/html/latest/filesystems/cifs/ksmbd.html";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://latencytop.org";
|
||||
description = "Tool to show kernel reports on latencies (LATENCYTOP option)";
|
||||
mainProgram = "latencytop";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = [ lib.maintainers.viric ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/intel/opa-psm2";
|
||||
description = "PSM2 library supports a number of fabric media and stacks";
|
||||
license = with licenses; [ gpl2 bsd3 ];
|
||||
license = with licenses; [ gpl2Only bsd3 ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
maintainers = [ maintainers.bzizou ];
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
homepage = "http://www.marcuscom.com/downloads/";
|
||||
};
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
||||
description = "MacBook automatic light sensor daemon";
|
||||
mainProgram = "lightum";
|
||||
homepage = "https://github.com/poliva/lightum";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ puffnfresh ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Linux kernel hwmon drivers for AIO liquid coolers and other devices";
|
||||
homepage = "https://github.com/liquidctl/liquidtux";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
maintainers = with maintainers; [ nickhu ];
|
||||
broken = lib.versionOlder kernel.version "5.10";
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Linux Kernel Stream Control Transmission Protocol Tools";
|
||||
homepage = "https://lksctp.sourceforge.net/";
|
||||
license = with licenses; [ gpl2 lgpl21 ]; # library is lgpl21
|
||||
license = with licenses; [ gpl2Plus lgpl21 ]; # library is lgpl21
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Userspace locking validation tool built on the Linux kernel";
|
||||
mainProgram = "lockdep";
|
||||
homepage = "https://kernel.org/";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ lib.maintainers.thoughtpolice ];
|
||||
};
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -155,7 +155,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://sourceware.org/lvm2/";
|
||||
description = "Tools to support Logical Volume Management (LVM) on Linux";
|
||||
platforms = platforms.linux;
|
||||
license = with licenses; [ gpl2 bsd2 lgpl21 ];
|
||||
license = with licenses; [ gpl2Only bsd2 lgpl21 ];
|
||||
maintainers = with maintainers; [ raskin ajs124 ] ++ teams.helsinki-systems.members;
|
||||
};
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
meta = with lib; {
|
||||
description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver";
|
||||
homepage = "https://github.com/patjak/mba6x_bl";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.simonvandel ];
|
||||
};
|
||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
kernel machine check handler.
|
||||
'';
|
||||
homepage = "https://github.com/andikleen/mce-inject/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ arkivm ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Programs for managing RAID arrays under Linux";
|
||||
homepage = "https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
mainProgram = "mdadm";
|
||||
maintainers = with maintainers; [ ekleog ];
|
||||
platforms = platforms.linux;
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Store and restore metadata from a filesystem";
|
||||
mainProgram = "metastore";
|
||||
homepage = "https://software.przemoc.net/#metastore";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ sstef ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Intel® 64 and IA-32 processor microcode tool";
|
||||
mainProgram = "iucode_tool";
|
||||
homepage = "https://gitlab.com/iucode-tool/iucode-tool";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://sourceforge.net/projects/mingetty";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ bash.runCommand "${pname}-${version}" {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Header files and scripts for Linux kernel";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = teams.minimal-bootstrap.members;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
homepage = "https://archlinux.org/";
|
||||
description = "ipconfig and nfsmount tools for root on NFS, ported from klibc";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
|
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to read/write from/to MSR CPU registers on Linux";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
};
|
||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Multiple Spanning Tree Protocol daemon";
|
||||
homepage = "https://github.com/mstpd/mstpd";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Tools for the Linux multipathing storage driver";
|
||||
homepage = "http://christophe.varoqui.free.fr/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation {
|
||||
description = "Network monitoring module for atop";
|
||||
mainProgram = "netatopd";
|
||||
homepage = "https://www.atoptool.nl/downloadnetatop.php";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ viric ];
|
||||
};
|
||||
|
@ -124,7 +124,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
homepage = "https://linux-nfs.org/";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "LDAP module for the Solaris Nameservice Switch (NSS)";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Library and tools for non-uniform memory access (NUMA) machines";
|
||||
homepage = "https://github.com/numactl/numactl";
|
||||
license = with licenses; [ gpl2 lgpl21 ]; # libnuma is lgpl21
|
||||
license = with licenses; [ gpl2Only lgpl21 ]; # libnuma is lgpl21
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Linux driver for setting the backlight brightness on laptops using NVIDIA GPU";
|
||||
homepage = "https://github.com/yorickvP/nvidiabl";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
maintainers = with maintainers; [ yorickvp ];
|
||||
broken = kernel.kernelAtLeast "5.18";
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://www.padl.com/OSS/pam_ccreds.html";
|
||||
description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable";
|
||||
mainProgram = "ccreds_chkpwd";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "PAM module to mount volumes for a user session";
|
||||
homepage = "https://pam-mount.sourceforge.net/";
|
||||
license = with licenses; [ gpl2 gpl3 lgpl21 lgpl3 ];
|
||||
license = with licenses; [ gpl2Plus gpl3 lgpl21 lgpl3 ];
|
||||
maintainers = with maintainers; [ netali ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Tool for controlling PaX flags on a per binary basis";
|
||||
mainProgram = "paxctl";
|
||||
homepage = "https://pax.grsecurity.net";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
};
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Test various memory protection measures";
|
||||
mainProgram = "paxtest";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ copumpkin joachifm ];
|
||||
};
|
||||
|
@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||
the PCMCIA subsystem to behave (almost) as every other
|
||||
hotpluggable bus system.
|
||||
";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ in stdenv.mkDerivation rec {
|
||||
Intel architectures.
|
||||
'';
|
||||
homepage = "https://github.com/danielw86dev/phc-intel-dkms";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
broken = lib.versionAtLeast kernel.version "4.18";
|
||||
};
|
||||
|
@ -35,7 +35,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
description = "GTK frontend for ratbagd mouse config daemon";
|
||||
mainProgram = "piper";
|
||||
homepage = "https://github.com/libratbag/piper";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ mvnetbiz ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = "https://pm-utils.freedesktop.org/wiki/";
|
||||
description = "Small collection of scripts that handle suspend and resume on behalf of HAL";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
homepage = "https://bazaar.launchpad.net/~fourmond/pmount/main/files";
|
||||
description = "Mount removable devices as normal user";
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "SELinux policy core utilities";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
inherit (libsepol.meta) homepage platforms maintainers;
|
||||
};
|
||||
}
|
||||
|
@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = "https://github.com/bytbox/pommed-light";
|
||||
platforms = [ "x86_64-linux" ];
|
||||
license = lib.licenses.gpl2;
|
||||
license = lib.licenses.gpl2Only;
|
||||
};
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Tool to calibrate power consumption";
|
||||
mainProgram = "power-calibrate";
|
||||
homepage = "https://github.com/ColinIanKing/power-calibrate";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Laptop power measuring tool";
|
||||
mainProgram = "powerstat";
|
||||
homepage = "https://github.com/ColinIanKing/powerstat";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ womfoo ];
|
||||
};
|
||||
|
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://gitlab.com/procps-ng/procps";
|
||||
description = "Utilities that give information about processes using the /proc filesystem";
|
||||
priority = 11; # less than coreutils, which also provides "kill" and "uptime"
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.typetetris ];
|
||||
};
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://gitlab.com/mildlyparallel/pscircle";
|
||||
description = "Visualize Linux processes in a form of a radial tree";
|
||||
mainProgram = "pscircle";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = [ maintainers.ldesgoui ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
@ -25,7 +25,7 @@ stdenv.mkDerivation {
|
||||
description = ''A FUSE filesystem intended to be used
|
||||
like Apache mod_rewrite'';
|
||||
homepage = "https://github.com/sloonz/rewritefs";
|
||||
license = licenses.gpl2;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user