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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
629 B
Nix
Raw Normal View History

2020-11-03 10:43:56 +00:00
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "owl-base";
2023-05-25 00:29:03 +00:00
version = "1.1";
2023-02-09 07:10:33 +00:00
duneVersion = "3";
2020-11-03 10:43:56 +00:00
src = fetchurl {
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
2023-05-25 00:29:03 +00:00
hash = "sha256-mDYCZ2z33VTEvc6gV4JTecIXA/vHIWuU37BADGl/yog=";
};
2023-02-09 07:10:33 +00:00
minimalOCamlVersion = "4.10";
2020-11-03 10:43:56 +00:00
meta = with 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;
};
}