nixos/manual: Must disable secure boot on UEFI installs (#364406)
[NixPkgs.git] / pkgs / development / ocaml-modules / uucd / default.nix
blob405afe47c6cdf8425c3e3de4216be09106c56e1b
2   lib,
3   stdenv,
4   fetchurl,
5   ocaml,
6   findlib,
7   ocamlbuild,
8   xmlm,
9   topkg,
12 let
13   pname = "uucd";
14   webpage = "https://erratique.ch/software/${pname}";
16 stdenv.mkDerivation rec {
17   name = "ocaml-${pname}-${version}";
18   version = "16.0.0";
20   src = fetchurl {
21     url = "${webpage}/releases/${pname}-${version}.tbz";
22     hash = "sha256-VVGPG6ZjchUqo8xMCJRahqCCF5WheDBpK1stuts+orM=";
23   };
25   nativeBuildInputs = [
26     ocaml
27     findlib
28     ocamlbuild
29     topkg
30   ];
31   buildInputs = [ topkg ];
33   strictDeps = true;
35   inherit (topkg) buildPhase installPhase;
37   propagatedBuildInputs = [ xmlm ];
39   meta = with lib; {
40     description = "OCaml module to decode the data of the Unicode character database from its XML representation";
41     homepage = webpage;
42     inherit (ocaml.meta) platforms;
43     maintainers = [ maintainers.vbgl ];
44     license = licenses.bsd3;
45   };