ocamlPackages.parse-argv: migrate to finalAttrs

This commit is contained in:
Guy Chronister
2026-05-12 13:28:31 -05:00
parent 514b59e510
commit 697ce04578
@@ -7,14 +7,14 @@
ounit,
}:
buildDunePackage rec {
buildDunePackage (finalAttrs: {
pname = "parse-argv";
version = "0.2.0";
minimalOCamlVersion = "4.03";
src = fetchurl {
url = "https://github.com/mirage/parse-argv/releases/download/v${version}/parse-argv-v${version}.tbz";
url = "https://github.com/mirage/parse-argv/releases/download/v${finalAttrs.version}/parse-argv-v${finalAttrs.version}.tbz";
sha256 = "06dl04fcmwpkydzni2fzwrhk0bqypd55mgxfax9v82x65xrgj5gw";
};
@@ -29,4 +29,4 @@ buildDunePackage rec {
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}
})