mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
bfe5d1cc96
- also enable tests (except on OSX) due to upstream fixes
26 lines
610 B
Nix
26 lines
610 B
Nix
{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "owl-base";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "owlbarn";
|
|
repo = "owl";
|
|
rev = version;
|
|
sha256 = "1a2lbhywrb3bmm4k48wwbp6iszpd3aj1f23v10i78cbqm5slk6dj";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|