41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.9)
|
|
{
|
|
inputs = {
|
|
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*.tar.gz";
|
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
|
|
};
|
|
outputs = { self, flake-schemas, nixpkgs }:
|
|
let
|
|
supportedSystems = [ "x86_64-linux" ];
|
|
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
|
pkgs = import nixpkgs { inherit system; };
|
|
});
|
|
in {
|
|
schemas = flake-schemas.schemas;
|
|
|
|
packages = forEachSupportedSystem ({ pkgs }: {
|
|
default = pkgs.writeShellScriptBin "mineschemer" ''
|
|
LD_LIBRARY_PATH="${pkgs.raylib}/lib" \
|
|
${pkgs.chez}/bin/scheme \
|
|
--script ${pkgs.writeText "main.scm" (builtins.readFile ./main.scm)} \
|
|
$@
|
|
'';
|
|
});
|
|
|
|
devShells = forEachSupportedSystem ({ pkgs }: {
|
|
default = pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
|
nixpkgs-fmt
|
|
chez
|
|
raylib
|
|
];
|
|
|
|
LD_LIBRARY_PATH="${pkgs.raylib}/lib";
|
|
# not necessary
|
|
LIBRARY_PATH="${pkgs.raylib}/include";
|
|
};
|
|
});
|
|
};
|
|
}
|