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