1{
2 lib,
3 stdenv,
4 fetchurl,
5 cmake,
6 perl,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "halibut";
11 version = "1.3";
12
13 src = fetchurl {
14 url = "https://www.chiark.greenend.org.uk/~sgtatham/halibut/halibut-${version}/halibut-${version}.tar.gz";
15 sha256 = "0ciikn878vivs4ayvwvr63nnhpcg12m8023xv514zxqpdxlzg85a";
16 };
17
18 nativeBuildInputs = [
19 cmake
20 perl
21 ];
22
23 meta = with lib; {
24 description = "Documentation production system for software manuals";
25 homepage = "https://www.chiark.greenend.org.uk/~sgtatham/halibut/";
26 license = licenses.mit;
27 maintainers = with maintainers; [ pSub ];
28 platforms = with platforms; unix;
29 mainProgram = "halibut";
30 };
31}