evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / unstrctrd / default.nix
blobe5959f803c8f9a2be70e13d7f6481763386df2cc
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.4";
19   src = fetchzip {
20     url = "https://github.com/dinosaure/unstrctrd/releases/download/v${version}/unstrctrd-${version}.tbz";
21     hash = "sha256-CGcDqEr+VDTbDYkjxeYB6IFWiTkOTLJJl/Y2bHtv19g=";
22   };
24   propagatedBuildInputs = [
25     angstrom
26     uutf
27   ];
29   checkInputs = [
30     alcotest
31     bigstringaf
32     crowbar
33     fmt
34     hxd
35     ke
36     rresult
37   ];
38   doCheck = true;
40   meta = {
41     description = "Library for parsing email headers";
42     homepage = "https://github.com/dinosaure/unstrctrd";
43     license = lib.licenses.mit;
44     maintainers = [ ];
45   };