ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-gettext / default.nix
blob79330a0999e5a1fbdc331ebda1c2a2724a3f4866
2   lib,
3   fetchurl,
4   buildDunePackage,
5   cppo,
6   gettext,
7   fileutils,
8   ounit,
9 }:
11 buildDunePackage rec {
12   pname = "gettext";
13   version = "0.4.2";
15   minimalOCamlVersion = "4.03";
17   src = fetchurl {
18     url = "https://github.com/gildor478/ocaml-gettext/releases/download/v${version}/gettext-v${version}.tbz";
19     sha256 = "19ynsldb21r539fiwz1f43apsdnx7hj2a2d9qr9wg2hva9y2qrwb";
20   };
22   nativeBuildInputs = [ cppo ];
24   propagatedBuildInputs = [
25     gettext
26     fileutils
27   ];
29   # Tests for version 0.4.2 are not compatible with OUnit 2.2.6
30   doCheck = false;
32   checkInputs = [ ounit ];
34   dontStrip = true;
36   meta = with lib; {
37     description = "OCaml Bindings to gettext";
38     homepage = "https://github.com/gildor478/ocaml-gettext";
39     license = licenses.lgpl21;
40     maintainers = [ ];
41     mainProgram = "ocaml-gettext";
42   };