brewery
notashelf /
79f99f189f84a5b0d760d3db80be97d6997ce7d7

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git

Commit 79f99f189f84

tarball

NotAShelf <raf@notashelf.dev> · 2026-02-24 16:40 UTC

1 files changed+3-3
nix: inline `env` set; add clang-tools to devshell & name shell

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I5cf7ad8f9fc8c568e53e6cf8dda12b746a6a6964
diff --git a/flake.nix b/flake.nixindex ff42014..de7e7ad 100644--- a/flake.nix+++ b/flake.nix@@ -9,6 +9,7 @@       pkgs = nixpkgs.legacyPackages.${system};     in {       default = pkgs.mkShell {+        name = "nixir";         buildInputs = with pkgs; [           boost.dev           libblake3.dev@@ -27,11 +28,10 @@           pkg-config           ninja           bear+          clang-tools         ]; -        env = {-          NIX_PLUGINABI = "0.2";-        };+        env.NIX_PLUGINABI = "0.2";       };     });   };