Unverified Commit 8e47ff99 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.vector: small cleaning

parent 256a78f4
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -4,15 +4,13 @@
  fetchurl,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "vector";
  version = "1.0.0";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/backtracking/vector/releases/download/${version}/vector-${version}.tbz";
    sha256 = "sha256:0hb6prpada4c5z07sxf5ayj5xbahsnwall15vaqdwdyfjgbd24pj";
    url = "https://github.com/backtracking/vector/releases/download/${finalAttrs.version}/vector-${finalAttrs.version}.tbz";
    hash = "sha256-8hLR1pPON96w2iVQqrjVUK1epFfFdX3AL4yopm6+ZkE=";
  };

  doCheck = true;
@@ -24,4 +22,4 @@ buildDunePackage rec {
    maintainers = [ lib.maintainers.vbgl ];
  };

}
})