python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / parse-argv / default.nix
blob4bc409245eed67492124a7bde1a1c48a9ae6f2a1
1 { lib, fetchurl, buildDunePackage, ocaml
2 , astring
3 , ounit
4 }:
6 buildDunePackage rec {
7   pname = "parse-argv";
8   version = "0.2.0";
10   useDune2 = true;
12   minimumOCamlVersion = "4.03";
14   src = fetchurl {
15     url = "https://github.com/mirage/parse-argv/releases/download/v${version}/parse-argv-v${version}.tbz";
16     sha256 = "06dl04fcmwpkydzni2fzwrhk0bqypd55mgxfax9v82x65xrgj5gw";
17   };
19   propagatedBuildInputs = [ astring ];
21   doCheck = lib.versionAtLeast ocaml.version "4.04";
22   checkInputs = [ ounit ];
24   meta = {
25     description = "Process strings into sets of command-line arguments";
26     homepage = "https://github.com/mirage/parse-argv";
27     license = lib.licenses.isc;
28     maintainers = [ lib.maintainers.vbgl ];
29   };