python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / languagemachines / ticcutils.nix
blob0b5fef292fcfff4911589d1db4eff4ad5fc280fe
1 { lib, stdenv, fetchurl
2 , automake, autoconf, libtool, pkg-config, autoconf-archive
3 , libxml2, zlib, bzip2, libtar }:
5 let
6   release = lib.importJSON ./release-info/LanguageMachines-ticcutils.json;
7 in
9 stdenv.mkDerivation {
10   pname = "ticcutils";
11   version = release.version;
12   src = fetchurl { inherit (release) url sha256;
13                    name = "ticcutils-${release.version}.tar.gz"; };
14   nativeBuildInputs = [ pkg-config automake autoconf ];
15   buildInputs = [ libtool autoconf-archive libxml2
16                   # optional:
17                   zlib bzip2 libtar
18                   # broken but optional: boost
19                 ];
20   preConfigure = "sh bootstrap.sh";
22   meta = with lib; {
23     description = "This module contains useful functions for general use in the TiCC software stack and beyond.";
24     homepage    = "https://github.com/LanguageMachines/ticcutils";
25     license     = licenses.gpl3;
26     platforms   = platforms.all;
27     maintainers = with maintainers; [ roberth ];
28   };