Add mutannot

This commit is contained in:
Sven van Heugten 2026-04-29 07:13:12 +02:00
parent c09915ac60
commit eaae9fe9b8
No known key found for this signature in database
GPG key ID: D612F88666F4F660
4 changed files with 42 additions and 0 deletions

View file

@ -7,6 +7,10 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
mutannot = {
url = "git+https://git.memcmp.org/svenvanheugten/mutannot.git?ref=main";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
@ -14,6 +18,7 @@
nixpkgs,
flake-utils,
git-check-assertions,
mutannot,
}:
flake-utils.lib.eachDefaultSystem (
system:
@ -26,6 +31,7 @@
packages = [
pkgs.dotnet-sdk_10
git-check-assertions.packages.${system}.default
mutannot.packages.${system}.default
];
};
}