pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
This commit is contained in:
committed by
Frederik Rietdijk
parent
3b06b8edb7
commit
f5fa5fa4d6
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
description = "Controls AlienFX lighting";
|
||||
homepage = "https://github.com/tibz/alienfx";
|
||||
homepage = https://github.com/tibz/alienfx;
|
||||
maintainers = [stdenv.lib.maintainers.tomberek];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/M0Rf30/android-udev-rules";
|
||||
homepage = https://github.com/M0Rf30/android-udev-rules;
|
||||
description = "Android udev rules list aimed to be the most comprehensive on the net";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Audit Library";
|
||||
homepage = "http://people.redhat.com/sgrubb/audit/";
|
||||
homepage = http://people.redhat.com/sgrubb/audit/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||
|
||||
@@ -49,7 +49,7 @@ stdenv.mkDerivation {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A module for powering off hybrid GPUs";
|
||||
platforms = platforms.linux;
|
||||
homepage = "https://github.com/Bumblebee-Project/bbswitch";
|
||||
homepage = https://github.com/Bumblebee-Project/bbswitch;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Dynamic Tracing Tools for Linux";
|
||||
homepage = "https://iovisor.github.io/bcc/";
|
||||
homepage = https://iovisor.github.io/bcc/;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ragge ];
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "http://sourceforge.net/projects/bridge/";
|
||||
homepage = "http://www.linux-foundation.org/en/Net:Bridge/";
|
||||
homepage = http://www.linux-foundation.org/en/Net:Bridge/;
|
||||
license = "GPL";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Local network file caching management daemon";
|
||||
homepage = "https://people.redhat.com/dhowells/fscache/";
|
||||
homepage = https://people.redhat.com/dhowells/fscache/;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "CAN userspace utilities and tools (for use with Linux SocketCAN)";
|
||||
homepage = "https://github.com/linux-can/can-utils";
|
||||
homepage = https://github.com/linux-can/can-utils;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple program to read/write from/to any location in memory";
|
||||
homepage = "http://lartmaker.nl/lartware/port/";
|
||||
homepage = http://lartmaker.nl/lartware/port/;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
|
||||
@@ -48,6 +48,6 @@ in stdenv.mkDerivation rec {
|
||||
description = "DisplayLink DL-5xxx, DL-41xx and DL-3x00 Driver for Linux";
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
license = licenses.unfree;
|
||||
homepage = "http://www.displaylink.com/";
|
||||
homepage = http://www.displaylink.com/;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Linux kernel drivers for Intel Ethernet adapters and LOMs (LAN On Motherboard)";
|
||||
homepage = "http://e1000.sf.net/";
|
||||
homepage = http://e1000.sf.net/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Extensible Virtual Display Interface";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
homepage = "http://www.displaylink.com/";
|
||||
homepage = http://www.displaylink.com/;
|
||||
broken = !versionAtLeast kernel.version "3.16";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with lib; {
|
||||
description = "Ubuntu FAN network support enablement";
|
||||
homepage = "https://launchpad.net/ubuntu/+source/ubuntu-fan";
|
||||
homepage = https://launchpad.net/ubuntu/+source/ubuntu-fan;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation {
|
||||
license = stdenv.lib.licenses.gpl2Plus ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
homepage = "http://l3net.wordpress.com/projects/firejail/";
|
||||
homepage = http://l3net.wordpress.com/projects/firejail/;
|
||||
downloadPage = "http://sourceforge.net/projects/firejail/files/firejail/";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = "--datadir=$(prefix)/data";
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/vcrhonek/hwdata";
|
||||
homepage = https://github.com/vcrhonek/hwdata;
|
||||
description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = {
|
||||
description = "A 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";
|
||||
homepage = http://www16.plala.or.jp/mano-a-mano/i810switch.html;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "evmctl utility to manage digital signatures of the Linux kernel integrity subsystem (IMA/EVM)";
|
||||
homepage = "http://sourceforge.net/projects/linux-ima/";
|
||||
homepage = http://sourceforge.net/projects/linux-ima/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
|
||||
|
||||
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://ipsec-tools.sourceforge.net/";
|
||||
homepage = http://ipsec-tools.sourceforge.net/;
|
||||
description = "Port of KAME's IPsec utilities to the Linux-2.6 IPsec implementation";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
||||
buildInputs = [ linuxHeaders ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://code.google.com/p/jujuutils/";
|
||||
homepage = http://code.google.com/p/jujuutils/;
|
||||
description = "Utilities around FireWire devices connected to a Linux computer";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "KMS/DRM based System Console";
|
||||
homepage = "http://www.freedesktop.org/wiki/Software/kmscon/";
|
||||
homepage = http://www.freedesktop.org/wiki/Software/kmscon/;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Example OpenGL app using KMS/GBM";
|
||||
homepage = "https://github.com/robclark/kmscube";
|
||||
homepage = https://github.com/robclark/kmscube;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dezgeg ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
homepage = "http://www.infradead.org/~tgr/libnl/";
|
||||
homepage = http://www.infradead.org/~tgr/libnl/;
|
||||
description = "Linux Netlink interface library suite";
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation {
|
||||
preFixup = ''rm -rf "$(pwd)" '';
|
||||
|
||||
meta = {
|
||||
homepage = "http://linux.dell.com/libsmbios/main";
|
||||
homepage = http://linux.dell.com/libsmbios/main;
|
||||
description = "A library to obtain BIOS information";
|
||||
license = stdenv.lib.licenses.gpl2Plus; # alternatively, under the Open Software License version 2.1
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Shim to preserve libudev.so.0 compatibility";
|
||||
homepage = "https://github.com/archlinux/libudev0-shim";
|
||||
homepage = https://github.com/archlinux/libudev0-shim;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://linuxcontainers.org/";
|
||||
homepage = https://linuxcontainers.org/;
|
||||
description = "Userspace tools for Linux Containers, a lightweight virtualization system";
|
||||
license = licenses.lgpl21Plus;
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver";
|
||||
homepage = "https://github.com/patjak/mba6x_bl";
|
||||
homepage = https://github.com/patjak/mba6x_bl;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.simonvandel ];
|
||||
|
||||
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Daemon that uses input from coretemp module and sets the fan speed using the applesmc module";
|
||||
homepage = "https://github.com/dgraziotin/mbpfan";
|
||||
homepage = https://github.com/dgraziotin/mbpfan;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://archlinux.org/";
|
||||
homepage = https://archlinux.org/;
|
||||
description = "ipconfig and nfsmount tools for root on NFS, ported from klibc";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "MOXA UPort 11x0 USB to Serial Hub driver";
|
||||
homepage = "https://github.com/ellysh/mxu11x0";
|
||||
homepage = https://github.com/ellysh/mxu11x0;
|
||||
license = licenses.gpl1;
|
||||
maintainers = with maintainers; [ uralbash ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -78,7 +78,7 @@ in stdenv.mkDerivation rec {
|
||||
daemons.
|
||||
'';
|
||||
|
||||
homepage = "https://sourceforge.net/projects/nfs/";
|
||||
homepage = https://sourceforge.net/projects/nfs/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.nvidia.com/object/unix.html";
|
||||
homepage = http://www.nvidia.com/object/unix.html;
|
||||
description = "Settings application for NVIDIA graphics cards";
|
||||
license = licenses.unfreeRedistributable;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.nvidia.com/object/unix.html";
|
||||
homepage = http://www.nvidia.com/object/unix.html;
|
||||
description = "Settings application for NVIDIA graphics cards";
|
||||
license = licenses.unfreeRedistributable;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -70,7 +70,7 @@ in stdenv.mkDerivation rec {
|
||||
support distribution across multiple physical servers similar
|
||||
to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V.
|
||||
'';
|
||||
homepage = "http://openvswitch.org/";
|
||||
homepage = http://openvswitch.org/;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [pam openssl db];
|
||||
meta = {
|
||||
homepage = "http://www.padl.com/OSS/pam_ccreds.html";
|
||||
homepage = http://www.padl.com/OSS/pam_ccreds.html;
|
||||
description = "PAM module to locally authenticate using an enterprise identity when the network is unavailable";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Support to authenticate against PostgreSQL for PAM-enabled appliations";
|
||||
homepage = "https://github.com/pam-pgsql/pam-pgsql";
|
||||
homepage = https://github.com/pam-pgsql/pam-pgsql;
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Software-Defined Networking tools for LXC";
|
||||
homepage = "https://github.com/jpetazzo/pipework";
|
||||
homepage = https://github.com/jpetazzo/pipework;
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Realtek SDIO Wi-Fi driver";
|
||||
homepage = "https://github.com/hadess/rtl8723bs";
|
||||
homepage = https://github.com/hadess/rtl8723bs;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
broken = (! versionAtLeast kernel.version "3.19");
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "Driver for Realtek 802.11ac, rtl8812au, provides the 8812au mod";
|
||||
homepage = "https://github.com/Grawp/rtl8812au_rtl8821au";
|
||||
homepage = https://github.com/Grawp/rtl8812au_rtl8821au;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||
|
||||
meta = with lib; {
|
||||
description = "The cake qdisc scheduler";
|
||||
homepage = "https://www.bufferbloat.net/projects/codel/wiki/Cake/";
|
||||
homepage = https://www.bufferbloat.net/projects/codel/wiki/Cake/;
|
||||
license = with licenses; [ bsd3 gpl2 ];
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Query or alter a process' scheduling policy under Linux";
|
||||
homepage = "http://freequaos.host.sk/schedtool/";
|
||||
homepage = http://freequaos.host.sk/schedtool/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "SELinux Tools";
|
||||
homepage = "http://oss.tresys.com/projects/setools/";
|
||||
homepage = http://oss.tresys.com/projects/setools/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation {
|
||||
license = stdenv.lib.licenses.mit ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
homepage = "http://tools.suckless.org/sinit";
|
||||
homepage = http://tools.suckless.org/sinit;
|
||||
downloadPage = "http://git.suckless.org/sinit";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -174,7 +174,7 @@ stdenv.mkDerivation rec {
|
||||
passthru.interfaceVersion = 2;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.freedesktop.org/wiki/Software/systemd";
|
||||
homepage = http://www.freedesktop.org/wiki/Software/systemd;
|
||||
description = "A system and service manager for Linux";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
|
||||
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "IBM ThinkPad hardware functions driver";
|
||||
homepage = "https://github.com/evgeni/tp_smapi/tree/tp-smapi/0.41";
|
||||
homepage = https://github.com/evgeni/tp_smapi/tree/tp-smapi/0.41;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.garbas ];
|
||||
# driver is only ment for linux thinkpads i think bellow platforms should cover it.
|
||||
|
||||
@@ -49,7 +49,7 @@ let
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://upstart.ubuntu.com/";
|
||||
homepage = http://upstart.ubuntu.com/;
|
||||
description = "An event-based replacement for the /sbin/init daemon";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user