This repository has been archived on 2025-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
godot-4.4.1/shell.nix
2025-03-19 11:51:57 +01:00

18 lines
336 B
Nix

{
pkgPath ? <nixpkgs>,
overlays ? (import <nixpkgs/nixos> { }).config.nixpkgs.overlays
}:
let
overlay = import ./overlay.nix;
pkgs = import pkgPath { overlays = [overlay] ++ overlays; };
inherit (pkgs) mkShell;
in
mkShell {
buildInputs = with pkgs; [
godotBin
godotHeadlessBin
godotMonoBin
];
}