-
Notifications
You must be signed in to change notification settings - Fork 4
/
flake.nix
112 lines (104 loc) · 3.52 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
inputs = {
# Candidate channels
# - https://github.com/kachick/anylang-template/issues/17
# - https://discourse.nixos.org/t/differences-between-nix-channels/13998
# How to update the revision
# - `nix flake update --commit-lock-file` # https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake-update.html
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
selfup = {
url = "github:kachick/selfup/v1.1.7";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
selfup,
}:
let
# Candidates: https://github.com/NixOS/nixpkgs/blob/release-23.11/lib/systems/flake-systems.nix
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
];
in
{
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style);
devShells = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
default = pkgs.mkShell {
buildInputs =
(with pkgs; [
# For Nix environments
# https://github.com/NixOS/nix/issues/730#issuecomment-162323824
bashInteractive
nil
nixfmt-rfc-style
cargo-make
sd
nodejs_20
nodejs_20.pkgs.pnpm
deno
dprint
typos
# Helper for writing and linting actions
#
# NOTE: Do NOT add actionlint as a dependency
# - It does not target actions; it lints the user's side.
# - It assumes major actions in a stable state, often causing problems between versions.
# - Use https://github.com/github/vscode-github-actions for a better solution to get hints.
pinact
# For fighting the GitHub API
gh
jq
jnv
gitleaks
])
++ [ selfup.packages.${system}.default ];
};
}
);
apps = forAllSystems (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
bump-nix-dependencies = {
type = "app";
program =
with pkgs;
lib.getExe (writeShellApplication {
name = "bump-nix-dependencies.bash";
runtimeInputs = [
nix
git
sd
nodejs_20
nodejs_20.pkgs.pnpm
];
# Why --really-refresh?: https://stackoverflow.com/q/34807971
text = ''
set -x
node --version | sd '^v?' "" > .node-version && git add .node-version
git update-index -q --really-refresh
git diff-index --quiet HEAD || git commit -m 'Sync .node-version with nixpkgs' .node-version
sd '("packageManager": "pnpm)@([0-9\.]+)' "\$1@$(pnpm --version)" package.json && git add package.json
git update-index -q --really-refresh
git diff-index --quiet HEAD || git commit -m 'Sync pnpm version with nixpkgs' package.json
'';
meta = {
description = "Bump dependency versions except managed by node package manager";
};
});
};
}
);
};
}