Create Nix package
All checks were successful
/ check (push) Successful in 7s

This commit is contained in:
Oliver Davies 2025-08-01 09:23:11 +01:00
parent 9ec56012c2
commit 9515ec0e29
3 changed files with 13 additions and 1 deletions

View file

@ -0,0 +1,11 @@
{
perSystem =
{ pkgs, ... }:
{
packages.default = pkgs.buildGoModule {
name = "git-repo-updater";
src = ../.;
vendorHash = "sha256-g+yaVIx4jxpAQ/+WrGKxhVeliYx7nLQe/zsGpxV4Fn4=";
};
};
}