mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
25 lines
631 B
Nix
25 lines
631 B
Nix
{ lib, buildDunePackage, fetchurl }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "owl-base";
|
|
version = "1.0.2";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
|
|
sha256 = "sha256-ONIQzmwcLwljH9WZUUMOTzZLWuA2xx7RsyzlWbKikmM=";
|
|
};
|
|
|
|
minimumOCamlVersion = "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;
|
|
};
|
|
}
|