Merge pull request #145235 from lovesegfault/nix-lovesegfault

nix: add lovesegfault to maintainers

authored by

Jörg Thalheim and committed by
GitHub
0f109217 b0e11689

+5 -5
+5 -5
pkgs/tools/package-management/nix/default.nix
··· 151 151 152 152 enableParallelBuilding = true; 153 153 154 - meta = { 154 + meta = with lib; { 155 155 description = "Powerful package manager that makes package management reliable and reproducible"; 156 156 longDescription = '' 157 157 Nix is a powerful package manager for Linux and other Unix systems that ··· 161 161 environments. 162 162 ''; 163 163 homepage = "https://nixos.org/"; 164 - license = lib.licenses.lgpl2Plus; 165 - maintainers = [ lib.maintainers.eelco ]; 166 - platforms = lib.platforms.unix; 167 - outputsToInstall = [ "out" ] ++ lib.optional enableDocumentation "man"; 164 + license = licenses.lgpl2Plus; 165 + maintainers = with maintainers; [ eelco lovesegfault ]; 166 + platforms = platforms.unix; 167 + outputsToInstall = [ "out" ] ++ optional enableDocumentation "man"; 168 168 }; 169 169 170 170 passthru = {