2020-11-06 00:33:48 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "owl-base";
|
2021-03-16 09:55:35 +00:00
|
|
|
version = "1.0.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
useDune2 = true;
|
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
|
2021-03-16 09:55:35 +00:00
|
|
|
sha256 = "72ca9f6edd302fdfa16c7559cedac7ac2c885466a367e17ea1ea8807b2dd13ef";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
minimumOCamlVersion = "4.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Numerical computing library for Ocaml";
|
|
|
|
homepage = "https://ocaml.xyz";
|
2020-05-29 06:06:01 +00:00
|
|
|
changelog = "https://github.com/owlbarn/owl/releases";
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.x86_64;
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|