biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / stringext / default.nix
blob32d801f971fb4aac4238bfbeeedfe8215386a66c
1 { lib, fetchurl, ocaml, buildDunePackage, ounit, qtest
2 # Optionally enable tests; test script use OCaml-4.01+ features
3 , doCheck ? lib.versionAtLeast ocaml.version "4.08"
4 }:
6 let version = "1.6.0"; in
8 buildDunePackage {
9   pname = "stringext";
10   version = version;
11   duneVersion = "3";
12   src = fetchurl {
13     url = "https://github.com/rgrinberg/stringext/releases/download/${version}/stringext-${version}.tbz";
14     sha256 = "1sh6nafi3i9773j5mlwwz3kxfzdjzsfqj2qibxhigawy5vazahfv";
15   };
17   checkInputs = [ ounit qtest ];
18   inherit doCheck;
20   meta = {
21     homepage = "https://github.com/rgrinberg/stringext";
22     description = "Extra string functions for OCaml";
23     license = lib.licenses.mit;
24     maintainers = with lib.maintainers; [ vbgl ];
25   };