mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-03 14:58:41 +03:00
10 lines
309 B
Nix
10 lines
309 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
|