treewide: mark some broken packages as broken
Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
This commit is contained in:
@@ -36,5 +36,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.genesis ];
|
||||
platforms = platforms.linux;
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ let
|
||||
|
||||
d2u = stdenv.lib.replaceChars ["-"] ["_"];
|
||||
|
||||
mkLibRetroCore = ({ core, src, description, license, ... }@a:
|
||||
mkLibRetroCore = ({ core, src, description, license, broken ? false, ... }@a:
|
||||
stdenv.lib.makeOverridable stdenv.mkDerivation rec {
|
||||
|
||||
name = "libretro-${core}-${version}";
|
||||
@@ -38,6 +38,7 @@ let
|
||||
inherit description;
|
||||
homepage = https://www.libretro.com/;
|
||||
inherit license;
|
||||
inherit broken;
|
||||
maintainers = with maintainers; [ edwtjo hrdinka MP2E ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
@@ -145,6 +146,7 @@ in with stdenv.lib.licenses;
|
||||
};
|
||||
description = "Port of Dolphin to libretro";
|
||||
license = gpl2Plus;
|
||||
broken = true;
|
||||
|
||||
extraBuildInputs = [
|
||||
cmake curl libGLU_combined pcre pkgconfig sfml miniupnpc
|
||||
|
||||
Reference in New Issue
Block a user