all repos — searchix @ 5de9a88a3e9104ab231e15d7e797a8ab29e4b904

Search engine for NixOS, nix-darwin, home-manager and NUR users

build: add task to update dependencies

Alan Pearce
commit

5de9a88a3e9104ab231e15d7e797a8ab29e4b904

parent

6da43da44fcb3a79891f5d463bbfd6fd7e86c248

2 files changed, 10 insertions(+), 1 deletion(-)

jump to
M flake.nixflake.nix
@@ -6,7 +6,6 @@ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils"; pre-commit-hooks = { url = "github:cachix/pre-commit-hooks.nix"; - inputs.flake-utils.follows = "flake-utils"; }; gomod2nix = { url = "github:nix-community/gomod2nix";
M justfilejustfile
@@ -4,6 +4,16 @@
prepare: nix build .#css -o frontend/static/base.css +update-go-dependencies: + go get -u all + go mod tidy + gomod2nix + +update-nix-dependencies: + nix flake update + +update-dependencies: update-go-dependencies update-nix-dependencies + checkformat: gofmt -d . goimports -d .