afsctool: switch to finalAttrs (#527681)

This commit is contained in:
Stanisław Pitucha
2026-06-03 21:28:00 +00:00
committed by GitHub
+3 -3
View File
@@ -9,14 +9,14 @@
sparsehash,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "afsctool";
version = "1.7.3";
src = fetchFromGitHub {
owner = "RJVB";
repo = "afsctool";
tag = "v${version}";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
gitConfigFile = builtins.toFile "gitconfig" ''
[url "https://github.com/"]
@@ -46,4 +46,4 @@ stdenv.mkDerivation rec {
platforms = lib.platforms.darwin;
homepage = "https://github.com/RJVB/afsctool";
};
}
})