geteduroam-cli: make use of finalAttrs

This commit is contained in:
Acid Bong 2025-04-21 12:42:19 +03:00
parent 013beed1db
commit fa57977035
No known key found for this signature in database

View File

@ -5,14 +5,14 @@
versionCheckHook,
nix-update-script,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "geteduroam-cli";
version = "0.8";
src = fetchFromGitHub {
owner = "geteduroam";
repo = "linux-app";
tag = version;
tag = finalAttrs.version;
hash = "sha256-2iAvE38r3iwulBqW+rrbrpNVgQlDhhcVUsjZSOT5P1A=";
};
@ -40,6 +40,6 @@ buildGoModule rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ viperML ];
platforms = lib.platforms.linux;
changelog = "https://github.com/geteduroam/linux-app/releases/tag/${version}";
changelog = "https://github.com/geteduroam/linux-app/releases/tag/${finalAttrs.version}";
};
}
})