ghostty/nix/overlay.nix
2022-09-08 13:46:05 -07:00

21 lines
551 B
Nix

final: prev: rec {
# Notes:
#
# When determining a SHA256, use this to set a fake one until we know
# the real value:
#
# vendorSha256 = nixpkgs.lib.fakeSha256;
#
devShell = prev.callPackage ./devshell.nix { };
ghostty = prev.callPackage ./package.nix { };
wraptest = prev.callPackage ./wraptest.nix { };
# zig we want to be the latest nightly since 0.9.0 is not released yet.
zig = final.zigpkgs.master;
# last known working stage1 build, the rest in the future are stage3
#zig = final.zigpkgs.master-2022-08-19;
}