build: add task to update dependencies
Alan Pearce alan@alanpearce.eu
Sun, 26 May 2024 12:17:46 +0200
M flake.nix → flake.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 justfile → justfile
@@ -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 .