summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/bigarray-compat/default.nix
blob: ae3a84fd6f9f0e7009b9efa78114951b4da1938a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  lib,
  buildDunePackage,
  fetchurl,
}:

buildDunePackage (finalAttrs: {
  pname = "bigarray-compat";
  version = "1.1.0";

  src = fetchurl {
    url = "https://github.com/mirage/bigarray-compat/releases/download/v${finalAttrs.version}/bigarray-compat-${finalAttrs.version}.tbz";
    hash = "sha256-Q0RppI1chOgNYhsT2V6wZ/gTjBZQof1a5gCaGbk3GNU=";
  };

  meta = {
    description = "Compatibility library to use Stdlib.Bigarray when possible";
    homepage = "https://github.com/mirage/bigarray-compat";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };
})