biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / dbf / default.nix
blob664cb5dead17c399f359dcb471d224de12b83778
1 { lib, buildDunePackage, fetchFromGitHub, ppx_cstruct, rresult, cstruct-unix
2 , core_kernel }:
4 buildDunePackage rec {
5   pname = "dbf";
6   version = "0.1.1";
8   minimalOCamlVersion = "4.08";
10   duneVersion = "3";
12   src = fetchFromGitHub {
13     owner = "pveber";
14     repo = "dbf";
15     rev = version;
16     hash = "sha256-h1K5YDLbXGEJi/quKXvSR0gZ+WkBzut7AsVFv+Bm8/g=";
17   };
19   buildInputs = [ ppx_cstruct ];
20   propagatedBuildInputs = [ rresult cstruct-unix core_kernel ];
22   meta = with lib; {
23     description = "DBF format parsing";
24     homepage = "https://github.com/pveber/dbf";
25     license = licenses.isc;
26     maintainers = [ maintainers.deltadelta ];
27   };