depot/third_party/nixpkgs/pkgs/development/ocaml-modules/owl-base/default.nix
Default email 4fc29cb41f Project import generated by Copybara.
GitOrigin-RevId: 135073a87b7e2c631739f4ffa016e1859b1a425e
2020-05-29 08:06:01 +02:00

28 lines
684 B
Nix

{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
buildDunePackage rec {
pname = "owl-base";
version = "0.9.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "owlbarn";
repo = "owl";
rev = version;
sha256 = "0xxchsymmdbwszs6barqq8x4vqz5hbap64yxq82c2la9sdxgk0vv";
};
propagatedBuildInputs = [ stdlib-shims ];
minimumOCamlVersion = "4.10";
meta = with stdenv.lib; {
description = "Numerical computing library for Ocaml";
homepage = "https://ocaml.xyz";
changelog = "https://github.com/owlbarn/owl/releases";
platforms = platforms.x86_64;
maintainers = [ maintainers.bcdarwin ];
license = licenses.mit;
};
}