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