adr-tools: switch to finalAttrs

Assisted-by: Cursor Composer 2.5
This commit is contained in:
Guy Chronister
2026-06-03 13:18:02 -05:00
parent 80a70a464e
commit 0a0622b3d9
+3 -3
View File
@@ -20,14 +20,14 @@
runCommand,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "adr-tools";
version = "3.0.0";
src = fetchFromGitHub {
owner = "npryce";
repo = "adr-tools";
tag = version;
tag = finalAttrs.version;
hash = "sha256-JEwLn+SY6XcaQ9VhN8ARQaZc1zolgAJKfIqPggzV+sU=";
};
@@ -112,4 +112,4 @@ stdenv.mkDerivation rec {
mainProgram = "adr";
platforms = lib.platforms.all;
};
}
})