mirror of
https://github.com/mitchellh/zig-overlay.git
synced 2025-02-05 08:52:48 +02:00
13 lines
326 B
Nix
13 lines
326 B
Nix
|
(import
|
||
|
(
|
||
|
let
|
||
|
flake-compat = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.flake-compat;
|
||
|
in
|
||
|
fetchTarball {
|
||
|
url = "https://github.com/edolstra/flake-compat/archive/${flake-compat.locked.rev}.tar.gz";
|
||
|
sha256 = flake-compat.locked.narHash;
|
||
|
}
|
||
|
)
|
||
|
{src = ./.;})
|
||
|
.shellNix
|