depot/pkgs/development/ocaml-modules/dbf/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
663 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, ppx_cstruct, rresult, cstruct-unix
, core_kernel }:
buildDunePackage rec {
pname = "dbf";
version = "0.2.0";
minimalOCamlVersion = "4.08";
duneVersion = "3";
src = fetchFromGitHub {
owner = "pveber";
repo = "dbf";
rev = "v${version}";
hash = "sha256-096GodM3J/4dsVdylG+6xz/p6ogUkhDGdFjiPwl/jLQ=";
};
buildInputs = [ ppx_cstruct ];
propagatedBuildInputs = [ rresult cstruct-unix core_kernel ];
meta = with lib; {
description = "DBF format parsing";
homepage = "https://github.com/pveber/dbf";
license = licenses.isc;
maintainers = [ maintainers.deltadelta ];
};
}