Also: - Add test for reading uv from tile coords - Build with nix - Pin nix with npins - Remove .config tools manifest - Remove preview flag
19 lines
458 B
Nix
19 lines
458 B
Nix
{
|
|
sources ? import ./nix,
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import sources.nixpkgs {
|
|
inherit system;
|
|
config = { };
|
|
overlays = [ ];
|
|
},
|
|
}:
|
|
let
|
|
sdk = pkgs.dotnetCorePackages.sdk_9_0;
|
|
sdslite = pkgs.callPackage ./nix/sdslite.nix { dotnet-sdk = sdk; };
|
|
projnetFsharp = pkgs.callPackage ./nix/projnet.fsharp.nix { dotnet-sdk = sdk; };
|
|
in
|
|
pkgs.callPackage ./src {
|
|
SDSLite = sdslite;
|
|
projnet = projnetFsharp;
|
|
dotnet-sdk = sdk;
|
|
} |