python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / halibut / default.nix
blobde76c4956d7a3a9ac55ac0b90502acea5a65dd7c
1 {lib, stdenv, fetchurl, cmake, perl}:
3 stdenv.mkDerivation rec {
4   pname = "halibut";
5   version = "1.3";
7   src = fetchurl {
8     url = "https://www.chiark.greenend.org.uk/~sgtatham/halibut/halibut-${version}/halibut-${version}.tar.gz";
9     sha256 = "0ciikn878vivs4ayvwvr63nnhpcg12m8023xv514zxqpdxlzg85a";
10   };
12   nativeBuildInputs = [ cmake perl ];
14   meta = with lib; {
15     description = "Documentation production system for software manuals";
16     homepage = "https://www.chiark.greenend.org.uk/~sgtatham/halibut/";
17     license = licenses.mit;
18     maintainers = with maintainers; [ pSub ];
19     platforms = with platforms; unix;
20   };