From e0ad59effe00688016a1dd55fc8bf4ad447d1f78 Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 4 Mar 2026 09:37:01 +0100 Subject: [PATCH 1/4] chore: update flake --- flake.lock | 12 ++++++------ flake.nix | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 37de1f2..b18e560 100644 --- a/flake.lock +++ b/flake.lock @@ -9,16 +9,16 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1772610504, - "narHash": "sha256-uoMnjsab5IpZRZ/1mn5oVy4fRnAYn6b58E3FNa+jyQY=", - "ref": "v1.0.4", - "rev": "86a0792b6e54104e8cb33983cabc175aea8da464", - "revCount": 33, + "lastModified": 1772613315, + "narHash": "sha256-RlPTOsyfVwuwEzvaMpwS+giOqQa6KQXMuSHyh1bctjk=", + "ref": "v1.0.5", + "rev": "e445e49baf8b44b385108cd4f26a14d8ccf9fd35", + "revCount": 35, "type": "git", "url": "https://git.dgren.dev/eric/nix-flake-lib" }, "original": { - "ref": "v1.0.4", + "ref": "v1.0.5", "type": "git", "url": "https://git.dgren.dev/eric/nix-flake-lib" } diff --git a/flake.nix b/flake.nix index 88e0a57..8bbea54 100644 --- a/flake.nix +++ b/flake.nix @@ -3,12 +3,13 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - devshell-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v1.0.4"; + devshell-lib.url = "git+https://git.dgren.dev/eric/nix-flake-lib?ref=v1.0.5"; devshell-lib.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { + self, nixpkgs, devshell-lib, ... @@ -41,6 +42,7 @@ bun bazel9 bazel-buildtools + self.packages.${system}.release ]; features = { -- 2.49.1 From 3086c3ffdea45980c7757403c2f463d576b34336 Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 4 Mar 2026 09:37:10 +0100 Subject: [PATCH 2/4] chore(release): v0.0.2 --- VERSION | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 VERSION diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..5e5e897 --- /dev/null +++ b/VERSION @@ -0,0 +1,3 @@ +0.0.2 +stable +0 -- 2.49.1 From 129d4598f6e6ffb1e0cb72279b66d7e7cd8fdd59 Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 4 Mar 2026 09:44:37 +0100 Subject: [PATCH 3/4] feat: cache nix packages in ci --- .github/workflows/copilot-setup-steps.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index b38dd56..9fc1694 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -35,5 +35,11 @@ jobs: extra_nix_config: | experimental-features = nix-command flakes + - name: Restore and save Nix store cache + uses: nix-community/cache-nix-action@v7 + with: + primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }} + restore-prefixes-first-match: nix-${{ runner.os }}- + - name: Install flake dependencies run: nix develop --accept-flake-config -c true -- 2.49.1 From aee9025bda33e555c2e1001c3c13e973da5f9617 Mon Sep 17 00:00:00 2001 From: eric Date: Wed, 4 Mar 2026 09:47:09 +0100 Subject: [PATCH 4/4] fix: bazel is green --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8bbea54..c65c881 100644 --- a/flake.nix +++ b/flake.nix @@ -88,7 +88,7 @@ name = "Bazel"; bin = "${bazel9}/bin/bazel"; versionCmd = "--version"; - color = "BLUE"; + color = "GREEN"; } ]; -- 2.49.1