Unverified Commit ed09646e authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.ptmap: small cleaning

parent e38f0674
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -6,15 +6,13 @@
  stdlib-shims,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "ptmap";
  version = "2.0.5";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/backtracking/ptmap/releases/download/${version}/ptmap-${version}.tbz";
    sha256 = "1apk61fc1y1g7x3m3c91fnskvxp6i0vk5nxwvipj56k7x2pzilgb";
    url = "https://github.com/backtracking/ptmap/releases/download/${finalAttrs.version}/ptmap-${finalAttrs.version}.tbz";
    hash = "sha256-69H4r+hnmiJv3LzbMjeI5vY9tXUhsVFHPy/4wFww86o=";
  };

  buildInputs = [ stdlib-shims ];
@@ -28,4 +26,4 @@ buildDunePackage rec {
    license = lib.licenses.lgpl21;
    maintainers = [ ];
  };
}
})