This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-testsetup-cil/flake.nix

25 lines
597 B
Nix
Raw Permalink Normal View History

2021-12-07 23:09:00 +00:00
{
2022-09-06 03:17:10 +00:00
description = "A .NET core library for easily building CLI tools";
2021-12-07 23:09:00 +00:00
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
2022-09-06 03:17:10 +00:00
buildInputs = [
pkgs.dotnet-sdk
pkgs.lefthook
pkgs.convco
pkgs.nodePackages.prettier
pkgs.nixfmt
pkgs.jq
];
2021-12-07 23:09:00 +00:00
};
});
}