nix_2_3: configure different maintainers

This commit is contained in:
Florian Klink 2023-11-20 00:23:34 +02:00
parent 37e563cbc7
commit 94a5cfaae6
2 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,11 @@
{ lib, fetchFromGitHub
{ lib
, fetchFromGitHub
, version
, suffix ? ""
, hash ? null
, src ? fetchFromGitHub { owner = "NixOS"; repo = "nix"; rev = version; inherit hash; }
, patches ? [ ]
, maintainers ? with lib.maintainers; [ eelco lovesegfault artturin ]
}:
assert (hash == null) -> (src != null);
let
@ -243,7 +245,7 @@ self = stdenv.mkDerivation {
'';
homepage = "https://nixos.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ eelco lovesegfault artturin ];
inherit maintainers;
platforms = platforms.unix;
outputsToInstall = [ "out" ] ++ optional enableDocumentation "man";
mainProgram = "nix";

View File

@ -151,6 +151,7 @@ in lib.makeExtensible (self: ({
patches = [
patch-monitorfdhup
];
maintainers = with lib.maintainers; [ flokli raitobezarius ];
}).override { boehmgc = boehmgc-nix_2_3; };
nix_2_10 = common {