workout-tracker: 2.2.2 → 2.3.0 (#420297)

This commit is contained in:
Peder Bergebakken Sundt
2025-06-27 06:51:00 +02:00
committed by GitHub
+5 -5
View File
@@ -1,6 +1,6 @@
{
lib,
buildGo124Module,
buildGoModule,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
@@ -9,19 +9,19 @@
}:
let
pname = "workout-tracker";
version = "2.2.2";
version = "2.3.0";
src = fetchFromGitHub {
owner = "jovandeginste";
repo = "workout-tracker";
tag = "v${version}";
hash = "sha256-TSRHsVpl/qfu4Dwttj1pYhD+4zzxCt48y9FF4zP1drY=";
hash = "sha256-dhuAa0gq++PluglLiU9A4Cve8WCvFz3JDWyhvjMdi0A=";
};
assets = buildNpmPackage {
pname = "${pname}-assets";
inherit version src;
npmDepsHash = "sha256-rUW7wdJg5AhcDxIaH74YXzQS3Pav2fOraw8Rhb+IgCc=";
npmDepsHash = "sha256-te7A8RRBOM/Ft0wdeBI0rng2IB9Zs6KzI3OK4bfBRRE=";
dontNpmBuild = true;
makeCacheWritable = true;
postPatch = ''
@@ -34,7 +34,7 @@ let
'';
};
in
buildGo124Module {
buildGoModule {
inherit pname version src;
vendorHash = null;