p2pool: move to finalAttrs pattern

This commit is contained in:
06kellyjac
2025-08-21 11:44:39 +01:00
parent 393ea62940
commit 3cdf0139ca
+3 -3
View File
@@ -14,14 +14,14 @@
zeromq,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "p2pool";
version = "4.9.1";
src = fetchFromGitHub {
owner = "SChernykh";
repo = "p2pool";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-jjY/+ZS7UYecHTQT93WAUZYYc+CZpG4Vbotmsq65un0=";
fetchSubmodules = true;
};
@@ -66,4 +66,4 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
}
})