zenyx-engine-telemetry/shell.nix

16 lines
412 B
Nix
Raw Normal View History

2025-03-22 21:58:27 -04:00
(
import
2025-03-22 18:19:01 -04:00
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
nodeName = lock.nodes.root.inputs.flake-compat;
in
2025-03-22 21:58:27 -04:00
fetchTarball {
url = lock.nodes.${nodeName}.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.${nodeName}.locked.rev}.tar.gz";
sha256 = lock.nodes.${nodeName}.locked.narHash;
}
2025-03-22 18:19:01 -04:00
)
2025-03-22 21:58:27 -04:00
{src = ./.;}
)
.shellNix