nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

maintainers: remove Madouura (#442867)

authored by

Wolfgang Walther and committed by
GitHub
bebd83aa 5fd6b067

+8 -138
-6
maintainers/maintainer-list.nix
··· 15470 15470 name = "madonius"; 15471 15471 matrix = "@madonius:entropia.de"; 15472 15472 }; 15473 - Madouura = { 15474 - email = "madouura@gmail.com"; 15475 - github = "Madouura"; 15476 - githubId = 93990818; 15477 - name = "Madoura"; 15478 - }; 15479 15473 maeve = { 15480 15474 email = "mrey@mailbox.org"; 15481 15475 matrix = "@maeve:catgirl.cloud";
+3 -1
nixos/modules/services/networking/zeronet.nix
··· 133 133 ] "Zeronet will log by default in /var/lib/zeronet") 134 134 ]; 135 135 136 - meta.maintainers = with maintainers; [ Madouura ]; 136 + meta = { 137 + inherit (pkgs.zeronet) maintainers; 138 + }; 137 139 }
+3 -1
nixos/tests/bcachefs.nix
··· 1 1 { pkgs, ... }: 2 2 { 3 3 name = "bcachefs"; 4 - meta.maintainers = with pkgs.lib.maintainers; [ Madouura ]; 4 + meta = { 5 + inherit (pkgs.bcachefs-tools.meta) maintainers; 6 + }; 5 7 6 8 nodes.machine = 7 9 { pkgs, ... }:
-1
pkgs/applications/misc/lutris/default.nix
··· 156 156 description = "Open Source gaming platform for GNU/Linux"; 157 157 license = licenses.gpl3Plus; 158 158 maintainers = with maintainers; [ 159 - Madouura 160 159 rapiteanu 161 160 iedame 162 161 ];
-1
pkgs/applications/misc/lutris/fhsenv.nix
··· 79 79 80 80 # Adventure Game Studio 81 81 allegro 82 - dumb 83 82 84 83 # Battle.net 85 84 jansson
-3
pkgs/by-name/ar/ares/package.nix
··· 121 121 description = "Open-source multi-system emulator with a focus on accuracy and preservation"; 122 122 license = lib.licenses.isc; 123 123 mainProgram = "ares"; 124 - maintainers = with lib.maintainers; [ 125 - Madouura 126 - ]; 127 124 platforms = lib.platforms.unix; 128 125 }; 129 126 })
-1
pkgs/by-name/bc/bcachefs-tools/package.nix
··· 134 134 maintainers = with lib.maintainers; [ 135 135 davidak 136 136 johnrtitor 137 - Madouura 138 137 ]; 139 138 platforms = lib.platforms.linux; 140 139 mainProgram = "bcachefs";
-1
pkgs/by-name/bl/blaze/package.nix
··· 30 30 description = "High performance C++ math library"; 31 31 homepage = "https://bitbucket.org/blaze-lib/blaze"; 32 32 license = with licenses; [ bsd3 ]; 33 - maintainers = with maintainers; [ Madouura ]; 34 33 platforms = platforms.unix; 35 34 }; 36 35 })
-1
pkgs/by-name/do/dolphin-emu-primehack/package.nix
··· 168 168 homepage = "https://github.com/shiiion/dolphin"; 169 169 description = "Gamecube/Wii/Triforce emulator for x86_64 and ARMv8"; 170 170 license = lib.licenses.gpl2Plus; 171 - maintainers = with lib.maintainers; [ Madouura ]; 172 171 broken = stdenv.hostPlatform.isDarwin; 173 172 platforms = lib.platforms.unix; 174 173 };
-38
pkgs/by-name/du/dumb/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - cmake, 6 - allegro, 7 - SDL2, 8 - }: 9 - 10 - stdenv.mkDerivation rec { 11 - pname = "dumb"; 12 - version = "2.0.3"; 13 - 14 - nativeBuildInputs = [ cmake ]; 15 - buildInputs = [ 16 - allegro 17 - SDL2 18 - ]; 19 - 20 - src = fetchFromGitHub { 21 - owner = "kode54"; 22 - repo = "dumb"; 23 - rev = version; 24 - sha256 = "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6"; 25 - }; 26 - 27 - cmakeFlags = [ 28 - "-DBUILD_EXAMPLES='OFF'" 29 - ]; 30 - 31 - meta = with lib; { 32 - homepage = "https://github.com/kode54/dumb"; 33 - description = "Module/tracker based music format parser and player library"; 34 - license = licenses.free; # Derivative of GPL 35 - maintainers = with maintainers; [ Madouura ]; 36 - platforms = platforms.all; 37 - }; 38 - }
-1
pkgs/by-name/ea/easyjson/package.nix
··· 23 23 description = "Fast JSON serializer for Go"; 24 24 mainProgram = "easyjson"; 25 25 license = licenses.mit; 26 - maintainers = with maintainers; [ Madouura ]; 27 26 }; 28 27 }
-1
pkgs/by-name/fr/frugally-deep/package.nix
··· 49 49 description = "Header-only library for using Keras (TensorFlow) models in C++"; 50 50 homepage = "https://github.com/Dobiasd/frugally-deep"; 51 51 license = with licenses; [ mit ]; 52 - maintainers = with maintainers; [ Madouura ]; 53 52 platforms = platforms.linux; 54 53 }; 55 54 })
-1
pkgs/by-name/ge/geticons/package.nix
··· 24 24 mainProgram = "geticons"; 25 25 homepage = "https://git.sr.ht/~zethra/geticons"; 26 26 license = with licenses; [ gpl3Plus ]; 27 - maintainers = with maintainers; [ Madouura ]; 28 27 }; 29 28 }
-1
pkgs/by-name/ko/kokkos/package.nix
··· 42 42 asl20 43 43 llvm-exception 44 44 ]; 45 - maintainers = with maintainers; [ Madouura ]; 46 45 platforms = platforms.unix; 47 46 broken = stdenv.hostPlatform.isDarwin; 48 47 };
-63
pkgs/by-name/pr/prboom-plus/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - cmake, 6 - SDL2, 7 - SDL2_mixer, 8 - SDL2_image, 9 - SDL2_net, 10 - fluidsynth, 11 - soundfont-fluid, 12 - portmidi, 13 - dumb, 14 - libvorbis, 15 - libmad, 16 - pcre, 17 - }: 18 - 19 - stdenv.mkDerivation rec { 20 - pname = "prboom-plus"; 21 - version = "2.6.66"; 22 - 23 - src = fetchFromGitHub { 24 - owner = "coelckers"; 25 - repo = "prboom-plus"; 26 - rev = "v${version}"; 27 - sha256 = "sha256-moU/bZ2mS1QfKPP6HaAwWP1nRNZ4Ue5DFl9zBBrJiHw="; 28 - }; 29 - 30 - sourceRoot = "${src.name}/prboom2"; 31 - 32 - nativeBuildInputs = [ 33 - cmake 34 - ]; 35 - 36 - buildInputs = [ 37 - SDL2 38 - SDL2_mixer 39 - SDL2_image 40 - SDL2_net 41 - fluidsynth 42 - portmidi 43 - dumb 44 - libvorbis 45 - libmad 46 - pcre 47 - ]; 48 - 49 - # Fixes impure path to soundfont 50 - prePatch = '' 51 - substituteInPlace src/m_misc.c --replace \ 52 - "/usr/share/sounds/sf3/default-GM.sf3" \ 53 - "${soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2" 54 - ''; 55 - 56 - meta = with lib; { 57 - homepage = "https://github.com/coelckers/prboom-plus"; 58 - description = "Advanced, Vanilla-compatible Doom engine based on PrBoom"; 59 - license = licenses.gpl2Plus; 60 - platforms = platforms.linux; 61 - maintainers = [ maintainers.ashley ]; 62 - }; 63 - }
-1
pkgs/by-name/qu/quicktemplate/package.nix
··· 20 20 homepage = "https://github.com/valyala/quicktemplate"; 21 21 description = "Fast, powerful, yet easy to use template engine for Go"; 22 22 license = licenses.mit; 23 - maintainers = with maintainers; [ Madouura ]; 24 23 mainProgram = "qtc"; 25 24 }; 26 25 }
-1
pkgs/by-name/ra/rapidjson/package.nix
··· 90 90 platforms = lib.platforms.unix; 91 91 maintainers = [ 92 92 lib.maintainers.dotlambda 93 - lib.maintainers.Madouura 94 93 lib.maintainers.tobim 95 94 ]; 96 95 };
-1
pkgs/by-name/sn/sndio/package.nix
··· 37 37 homepage = "https://www.sndio.org"; 38 38 description = "Small audio and MIDI framework part of the OpenBSD project"; 39 39 license = lib.licenses.isc; 40 - maintainers = with lib.maintainers; [ Madouura ]; 41 40 platforms = lib.platforms.all; 42 41 }; 43 42 })
-1
pkgs/by-name/st/statik/package.nix
··· 32 32 description = "Embed files into a Go executable"; 33 33 mainProgram = "statik"; 34 34 license = licenses.asl20; 35 - maintainers = with maintainers; [ Madouura ]; 36 35 }; 37 36 }
-1
pkgs/by-name/sv/svt-av1/package.nix
··· 72 72 aom 73 73 bsd3 74 74 ]; 75 - maintainers = with maintainers; [ Madouura ]; 76 75 mainProgram = "SvtAv1EncApp"; 77 76 platforms = platforms.unix; 78 77 };
-1
pkgs/by-name/te/tetrd/package.nix
··· 82 82 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 83 83 license = licenses.unfree; 84 84 platforms = [ "x86_64-linux" ]; 85 - maintainers = with maintainers; [ Madouura ]; 86 85 }; 87 86 }
-1
pkgs/by-name/te/tewisay/package.nix
··· 36 36 homepage = "https://github.com/raymond-w-ko/tewisay"; 37 37 description = "Cowsay replacement with unicode and partial ansi escape support"; 38 38 license = with licenses; [ cc0 ]; 39 - maintainers = with maintainers; [ Madouura ]; 40 39 mainProgram = "tewisay"; 41 40 }; 42 41 }
-1
pkgs/by-name/ti/tinygo/package.nix
··· 144 144 description = "Go compiler for small places"; 145 145 license = licenses.bsd3; 146 146 maintainers = with maintainers; [ 147 - Madouura 148 147 muscaln 149 148 ]; 150 149 };
-1
pkgs/by-name/to/tokyonight-gtk-theme/package.nix
··· 120 120 license = lib.licenses.gpl3Plus; 121 121 maintainers = with lib.maintainers; [ 122 122 garaiza-93 123 - Madouura 124 123 d3vil0p3r 125 124 ]; 126 125 platforms = lib.platforms.unix;
-1
pkgs/by-name/tr/triton-llvm/package.nix
··· 218 218 license = with lib.licenses; [ ncsa ]; 219 219 maintainers = with lib.maintainers; [ 220 220 SomeoneSerge 221 - Madouura 222 221 ]; 223 222 platforms = with lib.platforms; aarch64 ++ x86; 224 223 };
-1
pkgs/by-name/vl/vlang/package.nix
··· 120 120 description = "Simple, fast, safe, compiled language for developing maintainable software"; 121 121 license = licenses.mit; 122 122 maintainers = with maintainers; [ 123 - Madouura 124 123 delta231 125 124 ]; 126 125 mainProgram = "v";
-1
pkgs/development/python-modules/barectf/default.nix
··· 50 50 mainProgram = "barectf"; 51 51 homepage = "https://github.com/efficios/barectf"; 52 52 license = licenses.mit; 53 - maintainers = with maintainers; [ Madouura ]; 54 53 }; 55 54 }
-1
pkgs/development/python-modules/desktop-entry-lib/default.nix
··· 31 31 homepage = "https://codeberg.org/JakobDev/desktop-entry-lib"; 32 32 changelog = "https://codeberg.org/JakobDev/desktop-entry-lib/releases/tag/${version}"; 33 33 license = licenses.bsd2; 34 - maintainers = with maintainers; [ Madouura ]; 35 34 }; 36 35 }
-1
pkgs/development/python-modules/merkletools/default.nix
··· 35 35 homepage = "https://github.com/Tierion/pymerkletools"; 36 36 changelog = "https://github.com/Tierion/pymerkletools/releases/tag/${version}"; 37 37 license = licenses.mit; 38 - maintainers = with maintainers; [ Madouura ]; 39 38 }; 40 39 }
-1
pkgs/development/python-modules/protonup-ng/default.nix
··· 36 36 description = "CLI program and API to automate the installation and update of GloriousEggroll's Proton-GE"; 37 37 license = licenses.gpl3Only; 38 38 maintainers = with maintainers; [ 39 - Madouura 40 39 cafkafk 41 40 ]; 42 41 mainProgram = "protonup";
-1
pkgs/development/python-modules/sphinx-markdown-tables/default.nix
··· 26 26 meta = with lib; { 27 27 description = "Sphinx extension for rendering tables written in markdown"; 28 28 homepage = "https://github.com/ryanfox/sphinx-markdown-tables"; 29 - maintainers = with maintainers; [ Madouura ]; 30 29 license = licenses.gpl3; 31 30 }; 32 31 }
-1
pkgs/development/python-modules/triton/default.nix
··· 317 317 license = lib.licenses.mit; 318 318 maintainers = with lib.maintainers; [ 319 319 SomeoneSerge 320 - Madouura 321 320 derdennisop 322 321 ]; 323 322 };
+2
pkgs/top-level/aliases.nix
··· 779 779 du-dust = dust; # Added 2024-01-19 780 780 duckstation = throw "'duckstation' has been removed due to being unmaintained"; # Added 2025-08-03 781 781 duckstation-bin = throw "'duckstation-bin' has been removed due to being unmaintained"; # Added 2025-08-03 782 + dumb = throw "'dumb' has been archived by upstream. Upstream recommends libopenmpt as a replacement."; # Added 2025-09-14 782 783 dump1090 = dump1090-fa; # Added 2024-02-12 783 784 dwfv = throw "'dwfv' has been removed due to lack of upstream maintenance"; # Added 2025-01-25 784 785 dylibbundler = throw "'dylibbundler' has been renamed to/replaced by 'macdylibbundler'"; # Converted to throw 2024-10-17 ··· 2082 2081 polipo = throw "'polipo' has been removed as it is unmaintained upstream"; # Added 2025-05-18 2083 2082 poppler_utils = poppler-utils; # Added 2025-02-27 2084 2083 powerline-rs = throw "'powerline-rs' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 2084 + prboom-plus = throw "'prboom-plus' has been removed since it is unmaintained upstream."; # Added 2025-09-14 2085 2085 premake3 = throw "'premake3' has been removed since it is unmaintained. Consider using 'premake' instead"; # Added 2025-05-10 2086 2086 prismlauncher-qt5 = throw "'prismlauncher-qt5' has been removed from nixpkgs. Please use 'prismlauncher'"; # Added 2024-04-20 2087 2087 prismlauncher-qt5-unwrapped = throw "'prismlauncher-qt5-unwrapped' has been removed from nixpkgs. Please use 'prismlauncher-unwrapped'"; # Added 2024-04-20