Also: - Add test for reading uv from tile coords - Build with nix - Pin nix with npins - Remove .config tools manifest - Remove preview flag
29 lines
579 B
Nix
29 lines
579 B
Nix
{
|
|
dotnet-sdk,
|
|
fetchFromGitLab,
|
|
buildDotnetModule
|
|
}:
|
|
let
|
|
src = fetchFromGitLab {
|
|
owner = "oceanbox";
|
|
repo = "SDSlite";
|
|
# tag = "v2.8.0";
|
|
rev = "8c1a158206c37bc57a5bd726a792bd6a9cd2ec01";
|
|
private = true;
|
|
forceFetchGit = true;
|
|
hash = "sha256-i9pNrmH/VC0Q9FCldbWGdZHkqSL1cdYtAOs7vX+DlXM=";
|
|
};
|
|
in
|
|
buildDotnetModule {
|
|
name = "Oceanbox.SDSLite";
|
|
|
|
src = src;
|
|
|
|
dotnet-sdk = dotnet-sdk;
|
|
|
|
projectFile = "ScientificDataSet/ScientificDataSet.csproj";
|
|
nugetDeps = "${src}/ScientificDataSet/deps.json";
|
|
packNupkg = true;
|
|
|
|
executables = [ ];
|
|
} |