mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, fetchurl, buildDunePackage, ocaml
|
|
, astring, cmdliner, cppo, fpath, result, tyxml
|
|
, markup, yojson, sexplib0, jq
|
|
, odoc-parser, ppx_expect, bash, fmt
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "odoc";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml/odoc/releases/download/${version}/odoc-${version}.tbz";
|
|
sha256 = "sha256-F4blO/CCT+HHx7gdKn2EaEal0RZ3lp5jljYfd6OBaAM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cppo ];
|
|
buildInputs = [ astring cmdliner fpath result tyxml odoc-parser fmt ];
|
|
|
|
nativeCheckInputs = [ bash jq ];
|
|
checkInputs = [ markup yojson sexplib0 jq ppx_expect ];
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08"
|
|
&& lib.versionOlder yojson.version "2.0";
|
|
|
|
preCheck = ''
|
|
# some run.t files check the content of patchShebangs-ed scripts, so patch
|
|
# them as well
|
|
find test \( -name '*.sh' -o -name 'run.t' \) -execdir sed 's@#!/bin/sh@#!${bash}/bin/sh@' -i '{}' \;
|
|
patchShebangs test
|
|
'';
|
|
|
|
meta = {
|
|
description = "A documentation generator for OCaml";
|
|
mainProgram = "odoc";
|
|
license = lib.licenses.isc;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
homepage = "https://github.com/ocaml/odoc";
|
|
changelog = "https://github.com/ocaml/odoc/blob/${version}/CHANGES.md";
|
|
};
|
|
}
|