5dplomacy/flake.nix

24 lines
740 B
Nix
Raw Permalink Normal View History

2022-02-12 07:27:37 +00:00
{
2022-02-12 07:44:40 +00:00
description = "5D Diplomacy With Multiversal Time Travel";
2024-08-08 14:49:26 +00:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/24.05";
2022-02-12 07:44:40 +00:00
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in rec {
devShell = pkgs.mkShell {
2022-02-12 19:06:57 +00:00
DOTNET_CLI_TELEMETRY_OPTOUT = 1;
NIX_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.stdenv.cc.cc ];
NIX_LD = builtins.readFile "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
packages = [
pkgs.bashInteractive
2024-08-08 14:49:39 +00:00
pkgs.dotnet-sdk_8
pkgs.dotnetPackages.NUnit3
];
2022-02-12 07:44:40 +00:00
};
}
);
2022-02-12 07:27:37 +00:00
}