homebox: 0.20.2 -> 0.21.0

changelog: https://github.com/sysadminsmedia/homebox/releases/tag/v0.21.0

+4 -4
+4 -4
pkgs/by-name/ho/homebox/package.nix
··· 11 11 }: 12 12 let 13 13 pname = "homebox"; 14 - version = "0.20.2"; 14 + version = "0.21.0"; 15 15 src = fetchFromGitHub { 16 16 owner = "sysadminsmedia"; 17 17 repo = "homebox"; 18 18 tag = "v${version}"; 19 - hash = "sha256-6AJYC5SIITLBgYOq8TdwxAvRcyg8MOoA7WUDar9jSxM="; 19 + hash = "sha256-JA0LawQHWLCJQno1GsajVSsLG3GGgDp2ttIa2xELX48="; 20 20 }; 21 21 in 22 22 buildGoModule { 23 23 inherit pname version src; 24 24 25 - vendorHash = "sha256-GTSFpfql0ebXtZC3LeIZo8VbCZdsbemNK5EarDTRAf0="; 25 + vendorHash = "sha256-fklNsQEqAjbiaAwTAh5H3eeANkNRDVRuJZ8ithJsfZs="; 26 26 modRoot = "backend"; 27 27 # the goModules derivation inherits our buildInputs and buildPhases 28 28 # Since we do pnpm thing in those it fails if we don't explicitly remove them ··· 39 39 inherit pname version; 40 40 src = "${src}/frontend"; 41 41 fetcherVersion = 1; 42 - hash = "sha256-gHQ8Evo31SFmnBHtLDY5j5zZwwVS4fmkT+9VHZJWhfs="; 42 + hash = "sha256-gHx4HydL33i1SqzG1PChnlWdlO5NFa5F/R5Yq3mS4ng="; 43 43 }; 44 44 pnpmRoot = "../frontend"; 45 45