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

29 lines
684 B
Nix
Raw Normal View History

{ stdenv, buildDunePackage, fetchFromGitHub, stdlib-shims }:
buildDunePackage rec {
pname = "owl-base";
2020-05-27 16:25:59 +00:00
version = "0.9.0";
useDune2 = true;
src = fetchFromGitHub {
2020-05-27 16:25:59 +00:00
owner = "owlbarn";
repo = "owl";
rev = version;
sha256 = "0xxchsymmdbwszs6barqq8x4vqz5hbap64yxq82c2la9sdxgk0vv";
};
propagatedBuildInputs = [ stdlib-shims ];
2020-05-27 16:25:59 +00:00
minimumOCamlVersion = "4.10";
meta = with stdenv.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;
};
}