Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchurl }:
2
3buildDunePackage rec {
4 pname = "owl-base";
5 version = "1.1";
6
7 duneVersion = "3";
8
9 src = fetchurl {
10 url = "https://github.com/owlbarn/owl/releases/download/${version}/owl-${version}.tbz";
11 hash = "sha256-mDYCZ2z33VTEvc6gV4JTecIXA/vHIWuU37BADGl/yog=";
12 };
13
14 minimalOCamlVersion = "4.10";
15
16 meta = with lib; {
17 description = "Numerical computing library for Ocaml";
18 homepage = "https://ocaml.xyz";
19 changelog = "https://github.com/owlbarn/owl/releases";
20 platforms = platforms.x86_64;
21 maintainers = [ maintainers.bcdarwin ];
22 license = licenses.mit;
23 };
24}