This commit is contained in:
parent
9ec56012c2
commit
9515ec0e29
3 changed files with 13 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
/git-repo-updater
|
/git-repo-updater
|
||||||
|
/result
|
||||||
|
|
11
flake-modules/packages.nix
Normal file
11
flake-modules/packages.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
perSystem =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
packages.default = pkgs.buildGoModule {
|
||||||
|
name = "git-repo-updater";
|
||||||
|
src = ../.;
|
||||||
|
vendorHash = "sha256-g+yaVIx4jxpAQ/+WrGKxhVeliYx7nLQe/zsGpxV4Fn4=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
2
todo.txt
2
todo.txt
|
@ -3,10 +3,10 @@
|
||||||
* Make depth configurable per directory.
|
* Make depth configurable per directory.
|
||||||
* Set a default depth in config.yaml.
|
* Set a default depth in config.yaml.
|
||||||
* Add excluding/ignoring a repository.
|
* Add excluding/ignoring a repository.
|
||||||
|
* Add Nix package.
|
||||||
|
|
||||||
Add unit tests.
|
Add unit tests.
|
||||||
Add a `--dry-run` option.
|
Add a `--dry-run` option.
|
||||||
Complete README.
|
Complete README.
|
||||||
Add Nix package.
|
|
||||||
|
|
||||||
grep -r --exclude-dir=.git TODO .
|
grep -r --exclude-dir=.git TODO .
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue