-
-
Notifications
You must be signed in to change notification settings - Fork 243
stylix: add generated all-maintainers file #1654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+284
−5
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trueNAHO marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ lib, ... }: | ||
{ | ||
perSystem = | ||
{ pkgs, config, ... }: | ||
{ | ||
apps.all-maintainers = { | ||
program = pkgs.writeShellApplication { | ||
name = "update-all-maintainers"; | ||
runtimeInputs = [ pkgs.gitMinimal ]; | ||
text = '' | ||
root="$(git rev-parse --show-toplevel)" | ||
cp --force \ | ||
${config.packages.all-maintainers} \ | ||
"$root/generated/all-maintainers.nix" | ||
awwpotato marked this conversation as resolved.
Show resolved
Hide resolved
|
||
''; | ||
}; | ||
meta.description = "Update generated/all-maintainers.nix."; | ||
}; | ||
|
||
packages.all-maintainers = | ||
pkgs.runCommand "all-maintainers" | ||
{ | ||
passAsFile = [ "allMaintainers" ]; | ||
allMaintainers = '' | ||
# DO NOT EDIT THIS GENERATED FILE. | ||
# | ||
# This file lists Stylix module maintainers for GitHub review | ||
# requests, per NixOS RFC 39. | ||
# | ||
# To generate this file, run: | ||
# | ||
# nix run .#all-maintainers | ||
${lib.pipe ../../stylix/meta.nix [ | ||
(p: pkgs.callPackage p { }) | ||
builtins.attrValues | ||
(builtins.concatMap (target: target.maintainers or [ ])) | ||
(map (maintainer: lib.nameValuePair maintainer.github maintainer)) | ||
builtins.listToAttrs | ||
(lib.generators.toPretty { }) | ||
]} | ||
''; | ||
inherit (config.treefmt) projectRootFile; | ||
nativeBuildInputs = [ config.formatter ]; | ||
} | ||
'' | ||
touch "$projectRootFile" | ||
cp "$allMaintainersPath" all-maintainers.nix | ||
treefmt --no-cache all-maintainers.nix | ||
install -m 644 -T all-maintainers.nix "$out" | ||
''; | ||
}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
imports = [ | ||
./all-maintainers.nix | ||
./dev-shell.nix | ||
./packages.nix | ||
./pre-commit.nix | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
# DO NOT EDIT THIS GENERATED FILE. | ||
# | ||
# This file lists Stylix module maintainers for GitHub review | ||
# requests, per NixOS RFC 39. | ||
# | ||
# To generate this file, run: | ||
# | ||
# nix run .#all-maintainers | ||
{ | ||
"0x5a4" = { | ||
email = "[email protected]"; | ||
github = "0x5a4"; | ||
githubId = 54070204; | ||
name = "0x5a4"; | ||
}; | ||
Flameopathic = { | ||
email = "[email protected]"; | ||
github = "Flameopathic"; | ||
githubId = 64027365; | ||
name = "Erin Pletches"; | ||
}; | ||
MrSom3body = { | ||
email = "[email protected]"; | ||
github = "MrSom3body"; | ||
githubId = 129101708; | ||
matrix = "@mrsom3body:matrix.org"; | ||
name = "Karun Sandhu"; | ||
}; | ||
Noodlez1232 = { | ||
email = "[email protected]"; | ||
github = "Noodlez1232"; | ||
githubId = 12480453; | ||
matrix = "@noodlez1232:matrix.org"; | ||
name = "Nathaniel Barragan"; | ||
}; | ||
TheMaxMur = { | ||
email = "[email protected]"; | ||
github = "TheMaxMur"; | ||
githubId = 31189199; | ||
name = "Maxim Muravev"; | ||
}; | ||
ajgon = { | ||
email = "[email protected]"; | ||
github = "ajgon"; | ||
githubId = 150545; | ||
name = "Igor Rzegocki"; | ||
}; | ||
awwpotato = { | ||
email = "[email protected]"; | ||
github = "awwpotato"; | ||
githubId = 153149335; | ||
matrix = "@awwpotato:envs.net"; | ||
name = "awwpotato"; | ||
}; | ||
brckd = { | ||
email = "[email protected]"; | ||
github = "brckd"; | ||
githubId = 92804487; | ||
keys = [ | ||
{ | ||
fingerprint = "58A2 81E6 2FBD 6E4E 664C B603 7B4D 2A02 BB0E C28C"; | ||
} | ||
]; | ||
name = "bricked"; | ||
}; | ||
butzist = { | ||
email = "[email protected]"; | ||
github = "butzist"; | ||
githubId = 2405792; | ||
name = "Adam M. Szalkowski"; | ||
}; | ||
cluther = { | ||
email = "[email protected]"; | ||
github = "cluther"; | ||
githubId = 86579; | ||
name = "Chet Luther"; | ||
}; | ||
danth = { | ||
email = "[email protected]"; | ||
github = "danth"; | ||
githubId = 28959268; | ||
keys = [ | ||
{ | ||
fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D"; | ||
} | ||
]; | ||
matrix = "@danth:danth.me"; | ||
name = "Daniel Thwaites"; | ||
}; | ||
gideonwolfe = { | ||
email = "[email protected]"; | ||
github = "gideonwolfe"; | ||
githubId = 32942052; | ||
name = "Gideon Wolfe"; | ||
}; | ||
justdeeevin = { | ||
email = "[email protected]"; | ||
github = "justdeeevin"; | ||
githubId = 90054389; | ||
name = "Devin Droddy"; | ||
}; | ||
louis-thevenet = { | ||
github = "louis-thevenet"; | ||
githubId = 55986107; | ||
name = "Louis Thevenet"; | ||
}; | ||
make-42 = { | ||
email = "[email protected]"; | ||
github = "make-42"; | ||
githubId = 17462236; | ||
keys = [ | ||
{ | ||
fingerprint = "36BC 916D DD4E B1EE EE82 4BBF DC95 900F 6DA7 9992"; | ||
} | ||
]; | ||
matrix = "@ontake:matrix.ontake.dev"; | ||
name = "Louis Dalibard"; | ||
}; | ||
mateusauler = { | ||
email = "[email protected]"; | ||
github = "mateusauler"; | ||
githubId = 24767687; | ||
keys = [ | ||
{ | ||
fingerprint = "A09D C093 3C37 4BFC 2B5A 269F 80A5 D62F 6EB7 D9F0"; | ||
} | ||
]; | ||
name = "Mateus Auler"; | ||
}; | ||
mightyiam = { | ||
email = "[email protected]"; | ||
github = "mightyiam"; | ||
githubId = 635591; | ||
name = "Shahar \"Dawn\" Or"; | ||
}; | ||
nukdokplex = { | ||
email = "[email protected]"; | ||
github = "nukdokplex"; | ||
githubId = 25458915; | ||
keys = [ | ||
{ | ||
fingerprint = "7CE2 4C42 942D 58EA 99F6 F00A A47E 7374 3EF6 FCC4"; | ||
} | ||
]; | ||
name = "Viktor Titov"; | ||
}; | ||
osipog = { | ||
email = "[email protected]"; | ||
github = "osipog"; | ||
githubId = 87434959; | ||
name = "Osi Bluber"; | ||
}; | ||
panchoh = { | ||
email = "[email protected]"; | ||
github = "panchoh"; | ||
githubId = 471059; | ||
keys = [ | ||
{ | ||
fingerprint = "4430 F502 8B19 FAF4 A40E C4E8 11E0 447D 4ABB A7D0"; | ||
} | ||
]; | ||
matrix = "@panchoh:matrix.org"; | ||
name = "pancho horrillo"; | ||
}; | ||
repparw = { | ||
email = "[email protected]"; | ||
github = "repparw"; | ||
githubId = 45952970; | ||
name = "repparw"; | ||
}; | ||
skoove = { | ||
email = "[email protected]"; | ||
github = "skoove"; | ||
githubId = 53106860; | ||
name = "Zie Sturges"; | ||
}; | ||
trueNAHO = { | ||
github = "trueNAHO"; | ||
githubId = 90870942; | ||
keys = [ | ||
{ | ||
fingerprint = "5FC6 088A FB1A 609D 4532 F919 0C1C 177B 3B64 68E0"; | ||
} | ||
]; | ||
name = "Noah Pierre Biewesch"; | ||
}; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.