fishPlugins.pure: convert to finalAttrs pattern

This commit is contained in:
HigherOrderLogic
2026-06-29 10:16:11 +00:00
parent 3c9b70a64f
commit 247f9416e2

View File

@@ -5,15 +5,14 @@
git,
fishtape_3,
}:
buildFishPlugin rec {
buildFishPlugin (finalAttrs: {
pname = "pure";
version = "4.15.0";
src = fetchFromGitHub {
owner = "pure-fish";
repo = "pure";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-fqcIfst9YnkOi50pIUMoJJQ7s1w1Vr6hRdEFo+FWIZY=";
};
@@ -32,4 +31,4 @@ buildFishPlugin rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ euxane ];
};
}
})