linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / languagemachines / ticcutils.nix
blobc09f00b1160b6fe5c506d9d96b79339d399b2761
1 { lib, stdenv, fetchurl
2 , automake, autoconf, libtool, pkg-config, autoconf-archive
3 , libxml2, zlib, bzip2, libtar }:
5 let
6   release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-ticcutils.json);
7 in
9 stdenv.mkDerivation {
10   name = "ticcutils-${release.version}";
11   version = release.version;
12   src = fetchurl { inherit (release) url sha256;
13                    name = "ticcutils-${release.version}.tar.gz"; };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ automake autoconf 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   };