Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.ocaml_gettext: 0.4.1 → 0.4.2

authored by Vincent Laporte and committed by Vincent Laporte b1aefc40 f969d3b8

+6 -4
+6 -4
pkgs/development/ocaml-modules/ocaml-gettext/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, gettext, fileutils, ounit }: 1 + { lib, fetchurl, buildDunePackage, cppo, gettext, fileutils, ounit }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "gettext"; 5 - version = "0.4.1"; 5 + version = "0.4.2"; 6 6 7 7 minimumOCamlVersion = "4.03"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/gildor478/ocaml-gettext/releases/download/v${version}/gettext-v${version}.tbz"; 11 - sha256 = "0pwy6ym5fd77mdbgyas8x86vbrri9cgk79g8wxdjplhyi7zhh158"; 11 + sha256 = "19ynsldb21r539fiwz1f43apsdnx7hj2a2d9qr9wg2hva9y2qrwb"; 12 12 }; 13 + 14 + buildInputs = [ cppo ]; 13 15 14 16 propagatedBuildInputs = [ gettext fileutils ]; 15 17 16 18 doCheck = true; 17 19 18 - checkInputs = lib.optional doCheck ounit; 20 + checkInputs = [ ounit ]; 19 21 20 22 dontStrip = true; 21 23