mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Fix nix shell by hardcoding the flakecompat library (#2196)
This commit is contained in:
parent
9616477197
commit
b0bceb5674
1 changed files with 5 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
||||||
# Flake's devShell for non-flake-enabled nix instances
|
# Flake's devShell for non-flake-enabled nix instances
|
||||||
let
|
let
|
||||||
src = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.flakeCompat.locked;
|
compat =
|
||||||
compat = fetchTarball { url = "https://github.com/edolstra/flake-compat/archive/${src.rev}.tar.gz"; sha256 = src.narHash; };
|
builtins.fetchGit {
|
||||||
|
url = "https://github.com/edolstra/flake-compat.git";
|
||||||
|
rev = "b4a34015c698c7793d592d66adbab377907a2be8";
|
||||||
|
};
|
||||||
in
|
in
|
||||||
(import compat { src = ./.; }).shellNix.default
|
(import compat { src = ./.; }).shellNix.default
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue