3
0
Fork 0
forked from mirrors/nixpkgs
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
631 B
Nix
Raw Normal View History

2020-11-03 10:43:56 +00:00
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
pname = "owl-base";
2022-03-24 17:26:08 +00:00
version = "1.0.2";
useDune2 = true;
2020-11-03 10:43:56 +00:00
src = fetchurl {
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
2022-03-24 17:26:08 +00:00
sha256 = "sha256-ONIQzmwcLwljH9WZUUMOTzZLWuA2xx7RsyzlWbKikmM=";
};
2020-05-27 17:25:59 +01:00
minimumOCamlVersion = "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 17:25:59 +01:00
changelog = "https://github.com/owlbarn/owl/releases";
platforms = platforms.x86_64;
maintainers = [ maintainers.bcdarwin ];
license = licenses.mit;
};
}