ghostty/shell.nix
Mitchell Hashimoto ee26d48140 nix: add back shell.nix
2023-12-08 07:59:19 -08:00

10 lines
317 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