2021-06-13 09:03:42 +04:00
|
|
|
# Flake's devShell for non-flake-enabled nix instances
|
|
|
|
let
|
2022-06-22 00:59:46 +04:00
|
|
|
compat = builtins.fetchTarball {
|
|
|
|
url = "https://github.com/edolstra/flake-compat/archive/b4a34015c698c7793d592d66adbab377907a2be8.tar.gz";
|
|
|
|
sha256 = "sha256:1qc703yg0babixi6wshn5wm2kgl5y1drcswgszh4xxzbrwkk9sv7";
|
2022-06-06 23:24:52 +04:00
|
|
|
};
|
2021-06-13 09:03:42 +04:00
|
|
|
in
|
2022-06-06 23:24:52 +04:00
|
|
|
(import compat {src = ./.;}).shellNix.default
|