nixpkgs/pkgs/development/ocaml-modules/cstruct/default.nix

25 lines
641 B
Nix
Raw Normal View History

2020-11-19 06:36:41 +00:00
{ lib, fetchurl, buildDunePackage, bigarray-compat }:
buildDunePackage rec {
pname = "cstruct";
2020-11-19 06:36:41 +00:00
version = "5.0.0";
useDune2 = true;
minimumOCamlVersion = "4.03";
2017-11-28 01:11:15 +00:00
src = fetchurl {
url = "https://github.com/mirage/ocaml-cstruct/releases/download/v${version}/cstruct-v${version}.tbz";
2020-11-19 06:36:41 +00:00
sha256 = "1z403q2nkgz5x07j0ypy6q0mk2yxgqbp1jlqkngbajna7124x2pb";
2017-11-28 01:11:15 +00:00
};
2020-11-19 06:36:41 +00:00
propagatedBuildInputs = [ bigarray-compat ];
2017-11-28 01:11:15 +00:00
meta = {
description = "Access C-like structures directly from OCaml";
license = lib.licenses.isc;
2017-11-28 01:11:15 +00:00
homepage = "https://github.com/mirage/ocaml-cstruct";
maintainers = [ lib.maintainers.vbgl ];
2017-11-28 01:11:15 +00:00
};
}