Skip to content

Commit 986f020

Browse files
committed
feat: use numtide/blueprint instead of flake.parts
Signed-off-by: Brian McGee <[email protected]>
1 parent 30d30b5 commit 986f020

19 files changed

+295
-363
lines changed

.envrc

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
dotenv
2+
23
if ! has nix_direnv_version || ! nix_direnv_version 3.0.4; then
34
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.4/direnvrc" "sha256-DzlYZ33mWF/Gs8DDeyjr8mnVmQGx7ASYqA5WlxwvBG4="
45
fi
6+
7+
watch_file flake.nix
58
watch_file nix/devshell.nix
9+
610
use flake

.github/workflows/gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build the docs
2828
id: build
2929
run: |
30-
nix build .#docs
30+
nix build .#treefmt-docs
3131
echo "result=$(readlink ./result)" >> $GITHUB_OUTPUT
3232
- name: Upload artifact
3333
uses: actions/upload-pages-artifact@v3

default.nix

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
{system ? builtins.currentSystem}: let
33
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
44

5-
inherit (lock.nodes.flake-compat.locked) owner repo rev narHash;
5+
inherit
6+
(lock.nodes.flake-compat.locked)
7+
owner
8+
repo
9+
rev
10+
narHash
11+
;
612

713
flake-compat = fetchTarball {
814
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";

flake.lock

+38-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+27-27
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,13 @@
22
description = "Treefmt: once CLI to format your repo";
33

44
nixConfig = {
5-
extra-substituters = [
6-
"https://numtide.cachix.org"
7-
];
8-
extra-trusted-public-keys = [
9-
"numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE="
10-
];
5+
extra-substituters = ["https://numtide.cachix.org"];
6+
extra-trusted-public-keys = ["numtide.cachix.org-1:2ps1kLBUWjxIneOy1Ik6cQjb41X0iXVXeHigGmycPPE="];
117
};
128

139
inputs = {
14-
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
15-
flake-parts = {
16-
url = "github:hercules-ci/flake-parts";
17-
inputs.nixpkgs-lib.follows = "nixpkgs";
18-
};
19-
treefmt-nix = {
20-
url = "github:numtide/treefmt-nix";
10+
blueprint = {
11+
url = "github:numtide/blueprint";
2112
inputs.nixpkgs.follows = "nixpkgs";
2213
};
2314
devshell = {
@@ -29,28 +20,37 @@
2920
inputs.nixpkgs.follows = "nixpkgs";
3021
inputs.flake-utils.follows = "devshell/flake-utils";
3122
};
32-
nix-filter.url = "github:numtide/nix-filter";
3323
flake-compat.url = "github:nix-community/flake-compat";
24+
nix-filter.url = "github:numtide/nix-filter";
3425
nix-github-actions = {
3526
url = "github:nix-community/nix-github-actions";
3627
inputs.nixpkgs.follows = "nixpkgs";
3728
};
29+
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
30+
treefmt-nix = {
31+
url = "github:numtide/treefmt-nix";
32+
inputs.nixpkgs.follows = "nixpkgs";
33+
};
3834
};
3935

40-
outputs = inputs @ {flake-parts, ...}:
41-
flake-parts.lib.mkFlake
42-
{
36+
outputs = inputs: let
37+
inherit (inputs.nixpkgs) lib;
38+
in
39+
inputs.blueprint {
4340
inherit inputs;
41+
prefix = "nix/";
42+
nixpkgs.config = {
43+
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) ["terraform"];
44+
};
4445
}
45-
{
46-
imports = [
47-
./nix
48-
];
49-
systems = [
50-
"x86_64-linux"
51-
"aarch64-linux"
52-
"x86_64-darwin"
53-
"aarch64-darwin"
54-
];
46+
// {
47+
githubActions = inputs.nix-github-actions.lib.mkGithubMatrix {
48+
checks =
49+
lib.getAttrs [
50+
"x86_64-linux"
51+
"x86_64-darwin"
52+
]
53+
inputs.self.checks;
54+
};
5555
};
5656
}

nix/checks.nix

-16
This file was deleted.

nix/default.nix

-10
This file was deleted.

nix/devshell.nix

+70-56
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,73 @@
1-
{inputs, ...}: {
2-
imports = [
3-
inputs.devshell.flakeModule
4-
];
1+
{
2+
pkgs,
3+
perSystem,
4+
...
5+
}: let
6+
inherit (pkgs) lib;
7+
inherit (pkgs.stdenv) isLinux isDarwin;
8+
in
9+
perSystem.devshell.mkShell {
10+
env = [
11+
{
12+
name = "GOROOT";
13+
value = pkgs.go + "/share/go";
14+
}
15+
{
16+
name = "LD_LIBRARY_PATH";
17+
value = "$DEVSHELL_DIR/lib";
18+
}
19+
];
520

6-
config.perSystem = {
7-
lib,
8-
pkgs,
9-
config,
10-
...
11-
}: let
12-
inherit (pkgs.stdenv) isLinux isDarwin;
13-
in {
14-
config.devshells.default = {
15-
env = [
16-
{
17-
name = "GOROOT";
18-
value = pkgs.go + "/share/go";
19-
}
20-
{
21-
name = "LD_LIBRARY_PATH";
22-
value = "$DEVSHELL_DIR/lib";
23-
}
24-
];
21+
packages = lib.mkMerge [
22+
(with pkgs; [
23+
# golang
24+
go
25+
goreleaser
26+
golangci-lint
27+
delve
28+
pprof
29+
graphviz
2530

26-
packages = lib.mkMerge [
27-
(with pkgs; [
28-
# golang
29-
go
30-
goreleaser
31-
golangci-lint
32-
delve
33-
pprof
34-
graphviz
35-
])
36-
# platform dependent CGO dependencies
37-
(lib.mkIf isLinux [
38-
pkgs.gcc
39-
])
40-
(lib.mkIf isDarwin [
41-
pkgs.darwin.cctools
42-
])
43-
# include formatters for development and testing
44-
(import ./formatters.nix pkgs)
45-
];
31+
# docs
32+
nodejs
33+
])
34+
# platform dependent CGO dependencies
35+
(lib.mkIf isLinux [pkgs.gcc])
36+
(lib.mkIf isDarwin [pkgs.darwin.cctools])
37+
# include formatters for development and testing
38+
(import ./packages/treefmt/formatters.nix pkgs)
39+
];
4640

47-
commands = [
48-
{
49-
category = "development";
50-
package = pkgs.gomod2nix;
51-
}
52-
{
53-
category = "development";
54-
package = pkgs.enumer;
55-
}
56-
];
57-
};
58-
};
59-
}
41+
commands = [
42+
{package = perSystem.gomod2nix.default;}
43+
{
44+
name = "docs:dev";
45+
help = "serve docs for local development";
46+
command = "cd $PRJ_ROOT/docs && npm ci && npm run dev";
47+
}
48+
{
49+
name = "docs:build";
50+
help = "create a production build of docs";
51+
command = "cd $PRJ_ROOT/docs && npm ci && npm run build";
52+
}
53+
{
54+
name = "docs:preview";
55+
help = "preview a production build of docs";
56+
command = "cd $PRJ_ROOT/docs && npm ci && npm run preview";
57+
}
58+
{
59+
help = "generate terminal gifs";
60+
package = pkgs.writeShellApplication {
61+
name = "vhs";
62+
runtimeInputs =
63+
[
64+
perSystem.self.treefmt
65+
pkgs.rsync
66+
pkgs.vhs
67+
]
68+
++ (import ./packages/treefmt/formatters.nix pkgs);
69+
text = ''vhs "$@"'';
70+
};
71+
}
72+
];
73+
}

0 commit comments

Comments
 (0)