nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 33 lines 716 B view raw
1{ 2 lib, 3 fetchurl, 4 buildDunePackage, 5 dune-configurator, 6 lapack, 7 blas, 8}: 9 10assert (!blas.isILP64) && (!lapack.isILP64); 11 12buildDunePackage (finalAttrs: { 13 pname = "lacaml"; 14 version = "11.1.1"; 15 16 src = fetchurl { 17 url = "https://github.com/mmottl/lacaml/releases/download/${finalAttrs.version}/lacaml-${finalAttrs.version}.tbz"; 18 hash = "sha256-NEs7A/lfA+8AE6k19EPW02e1pseDE7HobGSB/ZwLcoc="; 19 }; 20 21 buildInputs = [ dune-configurator ]; 22 propagatedBuildInputs = [ 23 lapack 24 blas 25 ]; 26 27 meta = { 28 homepage = "https://mmottl.github.io/lacaml"; 29 description = "OCaml bindings for BLAS and LAPACK"; 30 license = lib.licenses.lgpl21Plus; 31 maintainers = [ lib.maintainers.vbgl ]; 32 }; 33})