depot/third_party/nixpkgs/pkgs/development/ocaml-modules/owl-base/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
630 B
Nix

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