Skip to content

Commit 0a3807d

Browse files
committed
chore: fix nix devshell (nix develop)
1 parent 4a073c2 commit 0a3807d

File tree

2 files changed

+87
-6
lines changed

2 files changed

+87
-6
lines changed

flake.lock

Lines changed: 84 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
nix2container.url = "github:nlewo/nix2container";
88
nix-editor.url = "github:snowfallorg/nix-editor";
99
rust-overlay.url = "github:oxalica/rust-overlay";
10+
nix-fast-build.url = "github:Mic92/nix-fast-build";
1011
};
1112

12-
outputs = { self, nixpkgs, flake-utils, nix-editor, rust-overlay, nix2container, ... }:
13+
outputs = { self, nixpkgs, flake-utils, nix-editor, rust-overlay, nix2container, ... }@inputs:
1314
let
1415
gitRev = "vcs=${self.shortRev or "dirty"}+${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}";
1516

@@ -1429,6 +1430,7 @@
14291430
export HISTFILE=.history
14301431
'';
14311432
};
1433+
nix-fast-build = inputs.nix-fast-build.packages.${system}.default;
14321434
in
14331435
{
14341436
default = pkgs.mkShell {

0 commit comments

Comments
 (0)