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

1
.gitignore vendored
View file

@ -1 +1,2 @@
/git-repo-updater
/result

View file

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

View file

@ -3,10 +3,10 @@
* Make depth configurable per directory.
* Set a default depth in config.yaml.
* Add excluding/ignoring a repository.
* Add Nix package.
Add unit tests.
Add a `--dry-run` option.
Complete README.
Add Nix package.
grep -r --exclude-dir=.git TODO .