ocamlPackages.gd: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-01-21 19:29:31 -06:00
parent 36cf8e548f
commit 8b0475de5b
@@ -6,14 +6,14 @@
gd,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "gd";
version = "1.1";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-gd";
rev = "v${version}";
rev = "v${finalAttrs.version}";
sha256 = "sha256-78cqxVEappTybRLk7Y6vW1POvZKFIxtGNVcmkKq9GEE=";
};
@@ -26,4 +26,4 @@ buildDunePackage rec {
license = lib.licenses.lgpl21Only;
maintainers = with lib.maintainers; [ dandellion ];
};
}
})