Commit 94a5cfaa authored by Florian Klink's avatar Florian Klink
Browse files

nix_2_3: configure different maintainers

parent 37e563cb
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
{ 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";
+1 −0
Original line number Diff line number Diff line
@@ -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 {