Also: - Add test for reading uv from tile coords - Build with nix - Pin nix with npins - Remove .config tools manifest - Remove preview flag
25 lines
434 B
Nix
25 lines
434 B
Nix
let
|
|
sources = import ./nix;
|
|
pkgs = import sources.nixpkgs {};
|
|
dotnet-sdk = pkgs.dotnetCorePackages.sdk_9_0;
|
|
in
|
|
with import <nixpkgs> { };
|
|
mkShell rec {
|
|
packages = [
|
|
bun
|
|
dotnet-sdk
|
|
fsautocomplete
|
|
fantomas
|
|
npins
|
|
nixfmt
|
|
nuget-to-json
|
|
];
|
|
|
|
buildInputs = [
|
|
netcdf
|
|
stdenv.cc.cc.lib
|
|
];
|
|
|
|
DOTNET_ROOT = "${dotnet-sdk}/share/dotnet";
|
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
|
|
} |