evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / parse-argv / default.nix
blob88df0bc281d1312fe1cbc20da4d192eef36b3ac9
1 { lib, fetchurl, buildDunePackage, ocaml
2 , astring
3 , ounit
4 }:
6 buildDunePackage rec {
7   pname = "parse-argv";
8   version = "0.2.0";
10   minimalOCamlVersion = "4.03";
12   src = fetchurl {
13     url = "https://github.com/mirage/parse-argv/releases/download/v${version}/parse-argv-v${version}.tbz";
14     sha256 = "06dl04fcmwpkydzni2fzwrhk0bqypd55mgxfax9v82x65xrgj5gw";
15   };
17   propagatedBuildInputs = [ astring ];
19   doCheck = lib.versionAtLeast ocaml.version "4.08";
20   checkInputs = [ ounit ];
22   meta = {
23     description = "Process strings into sets of command-line arguments";
24     homepage = "https://github.com/mirage/parse-argv";
25     license = lib.licenses.isc;
26     maintainers = [ lib.maintainers.vbgl ];
27   };