forked from mirrors/nixpkgs
ocamlPackages.bigarray-compat: init at 1.0.0
This commit is contained in:
parent
e9edc7537a
commit
10ffd51a96
20
pkgs/development/ocaml-modules/bigarray-compat/default.nix
Normal file
20
pkgs/development/ocaml-modules/bigarray-compat/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ lib, buildDunePackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "bigarray-compat";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mirage";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "06j1dwlpisxshdd0nab4n4x266gg1s1n8na16lpgw3fvcznwnimz";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Compatibility library to use Stdlib.Bigarray when possible";
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
license = lib.licenses.isc;
|
||||||
|
maintainers = [ lib.maintainers.vbgl ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -61,6 +61,8 @@ let
|
||||||
|
|
||||||
batteries = callPackage ../development/ocaml-modules/batteries { };
|
batteries = callPackage ../development/ocaml-modules/batteries { };
|
||||||
|
|
||||||
|
bigarray-compat = callPackage ../development/ocaml-modules/bigarray-compat { };
|
||||||
|
|
||||||
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
|
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
|
||||||
|
|
||||||
bistro = callPackage ../development/ocaml-modules/bistro { };
|
bistro = callPackage ../development/ocaml-modules/bistro { };
|
||||||
|
|
Loading…
Reference in a new issue