mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocamlPackages.bigarray-overlap: 0.2.0 → 0.2.1
This commit is contained in:
parent
5f0d203e0b
commit
0063dc9ef4
1 changed files with 10 additions and 12 deletions
|
@ -1,24 +1,22 @@
|
||||||
{ lib, buildDunePackage, ocaml, fetchurl
|
{ lib, buildDunePackage, fetchurl
|
||||||
, bigarray-compat, alcotest, astring, fpath, bos, findlib, pkg-config
|
, alcotest, pkg-config
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "bigarray-overlap";
|
pname = "bigarray-overlap";
|
||||||
version = "0.2.0";
|
version = "0.2.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/dinosaure/overlap/releases/download/v${version}/bigarray-overlap-v${version}.tbz";
|
url = "https://github.com/dinosaure/overlap/releases/download/v${version}/bigarray-overlap-${version}.tbz";
|
||||||
sha256 = "1v86avafsbyxjccy0y9gny31s2jzb0kd42v3mhcalklx5f044lcy";
|
hash = "sha256-L1IKxHAFTjNYg+upJUvyi2Z23bV3U8+1iyLPhK4aZuA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
minimumOCamlVersion = "4.07";
|
minimalOCamlVersion = "4.08";
|
||||||
useDune2 = true;
|
duneVersion = "3";
|
||||||
|
|
||||||
propagatedBuildInputs = [ bigarray-compat ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
checkInputs = [ alcotest ];
|
||||||
nativeBuildInputs = [ findlib pkg-config ];
|
doCheck = true;
|
||||||
checkInputs = [ alcotest astring fpath bos ];
|
|
||||||
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/dinosaure/overlap";
|
homepage = "https://github.com/dinosaure/overlap";
|
||||||
|
|
Loading…
Reference in a new issue