2020-11-06 00:33:48 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "owl-base";
|
2022-03-30 09:31:56 +00:00
|
|
|
version = "1.0.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
duneVersion = "3";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-06 00:33:48 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
|
2023-02-16 17:41:37 +00:00
|
|
|
hash = "sha256-ONIQzmwcLwljH9WZUUMOTzZLWuA2xx7RsyzlWbKikmM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-02-16 17:41:37 +00:00
|
|
|
minimalOCamlVersion = "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;
|
|
|
|
};
|
|
|
|
}
|