Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/shell.nix b/shell.nix
index 6bebcc41..c0d998e3 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,8 +1,9 @@
# Flake's devShell for non-flake-enabled nix instances
let
- compat = builtins.fetchTarball {
- url = "https://github.com/edolstra/flake-compat/archive/b4a34015c698c7793d592d66adbab377907a2be8.tar.gz";
- sha256 = "sha256:1qc703yg0babixi6wshn5wm2kgl5y1drcswgszh4xxzbrwkk9sv7";
- };
+ compat =
+ builtins.fetchGit {
+ url = "https://github.com/edolstra/flake-compat.git";
+ rev = "b4a34015c698c7793d592d66adbab377907a2be8";
+ };
in
- (import compat {src = ./.;}).shellNix.default
+(import compat { src = ./.; }).shellNix.default