ocamlPackages.{owl-base,owl}: init at 0.7.1

This commit is contained in:
Ben Darwin
2019-11-29 17:22:45 +00:00
committed by Vincent Laporte
parent 777efe8425
commit d016a507ea
3 changed files with 44 additions and 0 deletions
@@ -0,0 +1,25 @@
{ stdenv, buildDunePackage, fetchFromGitHub, integers, stdlib-shims }:
buildDunePackage rec {
pname = "owl-base";
version = "0.7.1";
src = fetchFromGitHub {
owner = "owlbarn";
repo = "owl";
rev = version;
sha256 = "1v4jfn3w18zq188f9gskx9ffja3xx59j2mgrw6azp8lsbqixg5xk";
};
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;
};
}