1 { lib, stdenv, fetchurl
2 , automake, autoconf, libtool, pkg-config, autoconf-archive
3 , libxml2, zlib, bzip2, libtar }:
6 release = lib.importJSON ./release-info/LanguageMachines-ticcutils.json;
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
18 # broken but optional: boost
20 preConfigure = "sh bootstrap.sh";
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 ];