2020-11-03 10:43:56 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl }:
|
2019-11-26 12:18:34 +00:00
|
|
|
|
2020-03-15 17:14:11 +00:00
|
|
|
buildDunePackage rec {
|
2019-11-26 12:18:34 +00:00
|
|
|
pname = "owl-base";
|
2021-03-16 00:54:02 +00:00
|
|
|
version = "1.0.1";
|
2019-11-26 12:18:34 +00:00
|
|
|
|
2020-03-15 17:14:11 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2020-11-03 10:43:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
|
2021-03-16 00:54:02 +00:00
|
|
|
sha256 = "72ca9f6edd302fdfa16c7559cedac7ac2c885466a367e17ea1ea8807b2dd13ef";
|
2019-11-26 12:18:34 +00:00
|
|
|
};
|
|
|
|
|
2020-05-27 17:25:59 +01:00
|
|
|
minimumOCamlVersion = "4.10";
|
2019-11-26 12:18:34 +00:00
|
|
|
|
2020-11-03 10:43:56 +00:00
|
|
|
meta = with lib; {
|
2019-11-26 12:18:34 +00:00
|
|
|
description = "Numerical computing library for Ocaml";
|
|
|
|
homepage = "https://ocaml.xyz";
|
2020-05-27 17:25:59 +01:00
|
|
|
changelog = "https://github.com/owlbarn/owl/releases";
|
2019-11-26 12:18:34 +00:00
|
|
|
platforms = platforms.x86_64;
|
|
|
|
maintainers = [ maintainers.bcdarwin ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|