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
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec{
|
||||
preConfigure = "cd src";
|
||||
|
||||
meta = {
|
||||
homepage = "http://atari800.sourceforge.net/";
|
||||
homepage = http://atari800.sourceforge.net/;
|
||||
description = "An Atari 8-bit emulator";
|
||||
longDescription = ''
|
||||
Atari800 is the emulator of Atari 8-bit computer systems and
|
||||
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
|
||||
microsoft windows experience. Bsod displays the famous windows xp
|
||||
blue screen of death on the console. Errors and drivers causing the
|
||||
error are selected randomly from a large set of examples.";
|
||||
homepage = "http://www.vanheusden.com/bsod/";
|
||||
homepage = http://www.vanheusden.com/bsod/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.antono ];
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Provides a Virtual (SCSI) HBA";
|
||||
homepage = "http://cdemu.sourceforge.net/about/vhba/";
|
||||
homepage = http://cdemu.sourceforge.net/about/vhba/;
|
||||
platforms = platforms.linux;
|
||||
licenses = licenses.gpl2Plus;
|
||||
};
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://citra-emu.org/";
|
||||
homepage = https://citra-emu.org/;
|
||||
description = "An open-source emulator for the Nintendo 3DS capable of playing many of your favorite games.";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.davidviner.com/dlx.php";
|
||||
homepage = http://www.davidviner.com/dlx.php;
|
||||
description = "DLX Simulator";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
meta = {
|
||||
description = "A flexible emulator front-end supporting keyboardless navigation and custom system themes";
|
||||
homepage = "http://emulationstation.org";
|
||||
homepage = http://emulationstation.org;
|
||||
maintainers = [ stdenv.lib.maintainers.edwtjo ];
|
||||
license = stdenv.lib.licenses.mit;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ zlib SDL cmake ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://hatari.tuxfamily.org/";
|
||||
homepage = http://hatari.tuxfamily.org/;
|
||||
description = "Atari ST/STE/TT/Falcon emulator";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec{
|
||||
installPhase = "mkdir -p $out/bin && cp ppsspp $out/bin";
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.ppsspp.org/";
|
||||
homepage = http://www.ppsspp.org/;
|
||||
description = "A PSP emulator, the Qt4 version";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ fuuzetsu AndersonTorres ];
|
||||
|
||||
@@ -33,7 +33,7 @@ let
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit description;
|
||||
homepage = "http://www.libretro.com/";
|
||||
homepage = http://www.libretro.com/;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ edwtjo hrdinka MP2E ];
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -106,7 +106,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) {
|
||||
passthru = { inherit pkgArches; };
|
||||
meta = {
|
||||
inherit version platforms;
|
||||
homepage = "http://www.winehq.org/";
|
||||
homepage = http://www.winehq.org/;
|
||||
license = "LGPL";
|
||||
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
|
||||
maintainers = with stdenv.lib.maintainers; [ avnik raskin ];
|
||||
|
||||
Reference in New Issue
Block a user