glance: 0.7.6 -> 0.7.7, use finalAttrs pattern (#390711)

This commit is contained in:
Pol Dellaiera
2025-03-17 23:29:12 +01:00
committed by GitHub
+7 -7
View File
@@ -6,15 +6,15 @@
nixosTests,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "glance";
version = "0.7.6";
version = "0.7.7";
src = fetchFromGitHub {
owner = "glanceapp";
repo = "glance";
tag = "v${version}";
hash = "sha256-1DIngje7UT86eI3ZJWd71BkbAvHJ2JC0LUHAQXz0rfc=";
tag = "v${finalAttrs.version}";
hash = "sha256-HFF1qiruz1SM9+g3xOKawuGmLzdYUUt3DnMRwjobVN4=";
};
vendorHash = "sha256-lURRHlZoxbuW1SXxrxy2BkMndcEllGFmVCB4pXBad8Q=";
@@ -22,7 +22,7 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X github.com/glanceapp/glance/internal/glance.buildVersion=${version}"
"-X github.com/glanceapp/glance/internal/glance.buildVersion=${finalAttrs.version}"
];
excludedPackages = [ "scripts/build-and-ship" ];
@@ -36,7 +36,7 @@ buildGoModule rec {
meta = {
homepage = "https://github.com/glanceapp/glance";
changelog = "https://github.com/glanceapp/glance/releases/tag/v${version}";
changelog = "https://github.com/glanceapp/glance/releases/tag/v${finalAttrs.version}";
description = "Self-hosted dashboard that puts all your feeds in one place";
mainProgram = "glance";
license = lib.licenses.agpl3Only;
@@ -45,4 +45,4 @@ buildGoModule rec {
defelo
];
};
}
})