5dplomacy/flake.nix

16 lines
383 B
Nix
Raw 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";
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 {
packages = [ pkgs.dotnet-sdk ];
};
}
);
2022-02-12 07:27:37 +00:00
}