python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / unstrctrd / default.nix
blob104cabfd0fae250fdb5ac1f96a12ebdb4a859d8b
1 { alcotest
2 , angstrom
3 , bigstringaf
4 , buildDunePackage
5 , crowbar
6 , fetchzip
7 , fmt
8 , hxd
9 , ke
10 , lib
11 , rresult
12 , uutf
15 buildDunePackage rec {
16   pname = "unstrctrd";
17   version = "0.3";
19   src = fetchzip {
20     url = "https://github.com/dinosaure/unstrctrd/releases/download/v${version}/unstrctrd-v${version}.tbz";
21     sha256 = "0mjm4v7kk75iwwsfnpmxc3bsl8aisz53y7z21sykdp60f4rxnah7";
22   };
24   useDune2 = true;
26   propagatedBuildInputs = [
27     angstrom
28     uutf
29   ];
31   checkInputs = [
32     alcotest
33     bigstringaf
34     crowbar
35     fmt
36     hxd
37     ke
38     rresult
39   ];
40   doCheck = true;
42   meta = {
43     description = "A library for parsing email headers";
44     homepage = "https://github.com/dinosaure/unstrctrd";
45     license = lib.licenses.mit;
46     maintainers = with lib.maintainers; [ ];
47   };