567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
fetchpatch,
|
|
applyPatches,
|
|
buildDunePackage,
|
|
ocaml,
|
|
cppo,
|
|
gettext,
|
|
fileutils,
|
|
ounit2,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "gettext";
|
|
version = "0.5.0";
|
|
|
|
src = applyPatches {
|
|
src = fetchurl {
|
|
url = "https://github.com/gildor478/ocaml-gettext/releases/download/v${finalAttrs.version}/gettext-${finalAttrs.version}.tbz";
|
|
hash = "sha256-CN2d9Vsq8YOOIxK+S+lCtDddvBjCrtDKGSRIh1DjT10=";
|
|
};
|
|
patches = [
|
|
# Disable dune sites
|
|
# See https://github.com/gildor478/ocaml-gettext/pull/37
|
|
(fetchpatch {
|
|
url = "https://github.com/gildor478/ocaml-gettext/commit/5462396bee53cb13d8d6fde4c6d430412a17b64d.patch";
|
|
hash = "sha256-tOR+xgZTadvNeQpZnFTJEvZglK8P+ySvYnE3c1VWvKQ=";
|
|
})
|
|
]
|
|
# Compatibility with OCaml ≥ 5.4
|
|
# See https://github.com/gildor478/ocaml-gettext/pull/41
|
|
++ lib.optional (lib.versionAtLeast ocaml.version "5.4") (fetchpatch {
|
|
url = "https://github.com/gildor478/ocaml-gettext/commit/5d521981e39dcaeada6bbe7b15c5432d6de5d33c.patch";
|
|
hash = "sha256-82ajmpyXSd2RdVq/ND4lS8PIugRSkKe5oL8BL9CsLo4=";
|
|
});
|
|
};
|
|
|
|
nativeBuildInputs = [ cppo ];
|
|
|
|
propagatedBuildInputs = [
|
|
gettext
|
|
fileutils
|
|
];
|
|
|
|
# Tests of version 0.5.0 fail
|
|
doCheck = false;
|
|
|
|
checkInputs = [ ounit2 ];
|
|
|
|
meta = {
|
|
description = "OCaml Bindings to gettext";
|
|
homepage = "https://github.com/gildor478/ocaml-gettext";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ ];
|
|
mainProgram = "ocaml-gettext";
|
|
};
|
|
})
|