maintainers: remove Madouura (#442867)

This commit is contained in:
Wolfgang Walther
2025-09-20 15:33:00 +00:00
committed by GitHub
33 changed files with 8 additions and 138 deletions
-6
View File
@@ -15470,12 +15470,6 @@
name = "madonius";
matrix = "@madonius:entropia.de";
};
Madouura = {
email = "madouura@gmail.com";
github = "Madouura";
githubId = 93990818;
name = "Madoura";
};
maeve = {
email = "mrey@mailbox.org";
matrix = "@maeve:catgirl.cloud";
@@ -133,5 +133,7 @@ with lib;
] "Zeronet will log by default in /var/lib/zeronet")
];
meta.maintainers = with maintainers; [ Madouura ];
meta = {
inherit (pkgs.zeronet) maintainers;
};
}
+3 -1
View File
@@ -1,7 +1,9 @@
{ pkgs, ... }:
{
name = "bcachefs";
meta.maintainers = with pkgs.lib.maintainers; [ Madouura ];
meta = {
inherit (pkgs.bcachefs-tools.meta) maintainers;
};
nodes.machine =
{ pkgs, ... }:
@@ -156,7 +156,6 @@ buildPythonApplication rec {
description = "Open Source gaming platform for GNU/Linux";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
Madouura
rapiteanu
iedame
];
-1
View File
@@ -79,7 +79,6 @@ buildFHSEnv {
# Adventure Game Studio
allegro
dumb
# Battle.net
jansson
-3
View File
@@ -121,9 +121,6 @@ stdenv.mkDerivation (finalAttrs: {
description = "Open-source multi-system emulator with a focus on accuracy and preservation";
license = lib.licenses.isc;
mainProgram = "ares";
maintainers = with lib.maintainers; [
Madouura
];
platforms = lib.platforms.unix;
};
})
@@ -134,7 +134,6 @@ stdenv.mkDerivation (finalAttrs: {
maintainers = with lib.maintainers; [
davidak
johnrtitor
Madouura
];
platforms = lib.platforms.linux;
mainProgram = "bcachefs";
-1
View File
@@ -30,7 +30,6 @@ stdenv.mkDerivation (finalAttrs: {
description = "High performance C++ math library";
homepage = "https://bitbucket.org/blaze-lib/blaze";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ Madouura ];
platforms = platforms.unix;
};
})
@@ -168,7 +168,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/shiiion/dolphin";
description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ Madouura ];
broken = stdenv.hostPlatform.isDarwin;
platforms = lib.platforms.unix;
};
-38
View File
@@ -1,38 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
allegro,
SDL2,
}:
stdenv.mkDerivation rec {
pname = "dumb";
version = "2.0.3";
nativeBuildInputs = [ cmake ];
buildInputs = [
allegro
SDL2
];
src = fetchFromGitHub {
owner = "kode54";
repo = "dumb";
rev = version;
sha256 = "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6";
};
cmakeFlags = [
"-DBUILD_EXAMPLES='OFF'"
];
meta = with lib; {
homepage = "https://github.com/kode54/dumb";
description = "Module/tracker based music format parser and player library";
license = licenses.free; # Derivative of GPL
maintainers = with maintainers; [ Madouura ];
platforms = platforms.all;
};
}
-1
View File
@@ -23,6 +23,5 @@ buildGoModule rec {
description = "Fast JSON serializer for Go";
mainProgram = "easyjson";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
};
}
@@ -49,7 +49,6 @@ stdenv.mkDerivation (finalAttrs: {
description = "Header-only library for using Keras (TensorFlow) models in C++";
homepage = "https://github.com/Dobiasd/frugally-deep";
license = with licenses; [ mit ];
maintainers = with maintainers; [ Madouura ];
platforms = platforms.linux;
};
})
-1
View File
@@ -24,6 +24,5 @@ rustPlatform.buildRustPackage rec {
mainProgram = "geticons";
homepage = "https://git.sr.ht/~zethra/geticons";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ Madouura ];
};
}
-1
View File
@@ -42,7 +42,6 @@ stdenv.mkDerivation (finalAttrs: {
asl20
llvm-exception
];
maintainers = with maintainers; [ Madouura ];
platforms = platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
-63
View File
@@ -1,63 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
SDL2,
SDL2_mixer,
SDL2_image,
SDL2_net,
fluidsynth,
soundfont-fluid,
portmidi,
dumb,
libvorbis,
libmad,
pcre,
}:
stdenv.mkDerivation rec {
pname = "prboom-plus";
version = "2.6.66";
src = fetchFromGitHub {
owner = "coelckers";
repo = "prboom-plus";
rev = "v${version}";
sha256 = "sha256-moU/bZ2mS1QfKPP6HaAwWP1nRNZ4Ue5DFl9zBBrJiHw=";
};
sourceRoot = "${src.name}/prboom2";
nativeBuildInputs = [
cmake
];
buildInputs = [
SDL2
SDL2_mixer
SDL2_image
SDL2_net
fluidsynth
portmidi
dumb
libvorbis
libmad
pcre
];
# Fixes impure path to soundfont
prePatch = ''
substituteInPlace src/m_misc.c --replace \
"/usr/share/sounds/sf3/default-GM.sf3" \
"${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2"
'';
meta = with lib; {
homepage = "https://github.com/coelckers/prboom-plus";
description = "Advanced, Vanilla-compatible Doom engine based on PrBoom";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ashley ];
};
}
@@ -20,7 +20,6 @@ buildGoModule rec {
homepage = "https://github.com/valyala/quicktemplate";
description = "Fast, powerful, yet easy to use template engine for Go";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
mainProgram = "qtc";
};
}
-1
View File
@@ -90,7 +90,6 @@ stdenv.mkDerivation (finalAttrs: {
platforms = lib.platforms.unix;
maintainers = [
lib.maintainers.dotlambda
lib.maintainers.Madouura
lib.maintainers.tobim
];
};
-1
View File
@@ -37,7 +37,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://www.sndio.org";
description = "Small audio and MIDI framework part of the OpenBSD project";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ Madouura ];
platforms = lib.platforms.all;
};
})
-1
View File
@@ -32,6 +32,5 @@ buildGoModule rec {
description = "Embed files into a Go executable";
mainProgram = "statik";
license = licenses.asl20;
maintainers = with maintainers; [ Madouura ];
};
}
-1
View File
@@ -72,7 +72,6 @@ stdenv.mkDerivation (finalAttrs: {
aom
bsd3
];
maintainers = with maintainers; [ Madouura ];
mainProgram = "SvtAv1EncApp";
platforms = platforms.unix;
};
-1
View File
@@ -82,6 +82,5 @@ stdenv.mkDerivation rec {
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ Madouura ];
};
}
-1
View File
@@ -36,7 +36,6 @@ buildGoModule {
homepage = "https://github.com/raymond-w-ko/tewisay";
description = "Cowsay replacement with unicode and partial ansi escape support";
license = with licenses; [ cc0 ];
maintainers = with maintainers; [ Madouura ];
mainProgram = "tewisay";
};
}
-1
View File
@@ -144,7 +144,6 @@ buildGoModule rec {
description = "Go compiler for small places";
license = licenses.bsd3;
maintainers = with maintainers; [
Madouura
muscaln
];
};
@@ -120,7 +120,6 @@ lib.checkListOfEnum "${pname}: colorVariants" colorVariantList colorVariants lib
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
garaiza-93
Madouura
d3vil0p3r
];
platforms = lib.platforms.unix;
-1
View File
@@ -218,7 +218,6 @@ stdenv.mkDerivation (finalAttrs: {
license = with lib.licenses; [ ncsa ];
maintainers = with lib.maintainers; [
SomeoneSerge
Madouura
];
platforms = with lib.platforms; aarch64 ++ x86;
};
-1
View File
@@ -120,7 +120,6 @@ stdenv.mkDerivation {
description = "Simple, fast, safe, compiled language for developing maintainable software";
license = licenses.mit;
maintainers = with maintainers; [
Madouura
delta231
];
mainProgram = "v";
@@ -50,6 +50,5 @@ buildPythonPackage rec {
mainProgram = "barectf";
homepage = "https://github.com/efficios/barectf";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
};
}
@@ -31,6 +31,5 @@ buildPythonPackage rec {
homepage = "https://codeberg.org/JakobDev/desktop-entry-lib";
changelog = "https://codeberg.org/JakobDev/desktop-entry-lib/releases/tag/${version}";
license = licenses.bsd2;
maintainers = with maintainers; [ Madouura ];
};
}
@@ -35,6 +35,5 @@ buildPythonPackage rec {
homepage = "https://github.com/Tierion/pymerkletools";
changelog = "https://github.com/Tierion/pymerkletools/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
};
}
@@ -36,7 +36,6 @@ buildPythonPackage rec {
description = "CLI program and API to automate the installation and update of GloriousEggroll's Proton-GE";
license = licenses.gpl3Only;
maintainers = with maintainers; [
Madouura
cafkafk
];
mainProgram = "protonup";
@@ -26,7 +26,6 @@ buildPythonPackage rec {
meta = with lib; {
description = "Sphinx extension for rendering tables written in markdown";
homepage = "https://github.com/ryanfox/sphinx-markdown-tables";
maintainers = with maintainers; [ Madouura ];
license = licenses.gpl3;
};
}
@@ -317,7 +317,6 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
SomeoneSerge
Madouura
derdennisop
];
};
+2
View File
@@ -779,6 +779,7 @@ mapAliases {
du-dust = dust; # Added 2024-01-19
duckstation = throw "'duckstation' has been removed due to being unmaintained"; # Added 2025-08-03
duckstation-bin = throw "'duckstation-bin' has been removed due to being unmaintained"; # Added 2025-08-03
dumb = throw "'dumb' has been archived by upstream. Upstream recommends libopenmpt as a replacement."; # Added 2025-09-14
dump1090 = dump1090-fa; # Added 2024-02-12
dwfv = throw "'dwfv' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
dylibbundler = throw "'dylibbundler' has been renamed to/replaced by 'macdylibbundler'"; # Converted to throw 2024-10-17
@@ -2081,6 +2082,7 @@ mapAliases {
polipo = throw "'polipo' has been removed as it is unmaintained upstream"; # Added 2025-05-18
poppler_utils = poppler-utils; # Added 2025-02-27
powerline-rs = throw "'powerline-rs' has been removed due to lack of upstream maintenance"; # Added 2025-01-26
prboom-plus = throw "'prboom-plus' has been removed since it is unmaintained upstream."; # Added 2025-09-14
premake3 = throw "'premake3' has been removed since it is unmaintained. Consider using 'premake' instead"; # Added 2025-05-10
prismlauncher-qt5 = throw "'prismlauncher-qt5' has been removed from nixpkgs. Please use 'prismlauncher'"; # Added 2024-04-20
prismlauncher-qt5-unwrapped = throw "'prismlauncher-qt5-unwrapped' has been removed from nixpkgs. Please use 'prismlauncher-unwrapped'"; # Added 2024-04-20