mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 03:43:45 +00:00
nix_2_3: configure different maintainers
This commit is contained in:
parent
37e563cbc7
commit
94a5cfaae6
@ -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";
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user