nixpkgs/pkgs/development/ocaml-modules/owl-base/default.nix

25 lines
632 B
Nix
Raw Normal View History

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