aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2023-12-30 16:39:52 -0500
committertdro <tdro@noreply.example.com>2023-12-30 16:39:52 -0500
commit4bd7e2fa02f13b4db505c4b13cf824cc1174201b (patch)
tree80f9383cbfa4fda80c87820378446e9f2f9b1f90 /shell.nix
parent9e126e0c3a9546974f91fc83edcdaf5310728c2a (diff)
downloadcanory-4bd7e2fa02f13b4db505c4b13cf824cc1174201b.tar.gz
canory-4bd7e2fa02f13b4db505c4b13cf824cc1174201b.tar.bz2
canory-4bd7e2fa02f13b4db505c4b13cf824cc1174201b.zip
shell: Update hugo to version 0.121.1
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index 2116197..f7c9419 100644
--- a/shell.nix
+++ b/shell.nix
@@ -10,15 +10,15 @@ let
hugo = pkgs.callPackage ({ lib, buildGoModule, fetchgit }:
buildGoModule rec {
pname = "hugo";
- version = "0.117.0";
+ version = "0.121.1";
src = fetchgit {
rev = "v${version}";
url = "https://github.com/gohugoio/hugo.git";
- sha256 = "sha256-WxYTlEqTWY78lHd+qEvmbRmbC6Ewph9U84SjvrlqgtY=";
+ sha256 = "sha256-XNOp0k2t5Tv4HKKz3ZqL/sAdiYedOACaZ/1T7t7/Q1A=";
};
doCheck = false;
proxyVendor = true;
- vendorSha256 = "sha256-yjARpHewjCm2W/08xu7O/PlE9jIOgYmunEyGEfTHNQs=";
+ vendorSha256 = "sha256-J/me67pC+YWjGIQP6q1c+vsSXFxXoLZV7AyDv3+606k=";
tags = [ "extended" ];
subPackages = [ "." ];
meta = {