nixpkgs/pkgs/development/ocaml-modules/owl-base/default.nix
2023-05-25 06:36:46 +02:00

25 lines
629 B
Nix

{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "owl-base";
version = "1.1";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
hash = "sha256-mDYCZ2z33VTEvc6gV4JTecIXA/vHIWuU37BADGl/yog=";
};
minimalOCamlVersion = "4.10";
meta = with 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;
};
}