nixpkgs/pkgs/development/libraries/languagemachines/ticcutils.nix

31 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl
, automake, autoconf, libtool, pkg-config, autoconf-archive
2017-08-08 09:34:09 +00:00
, libxml2, zlib, bzip2, libtar }:
let
release = builtins.fromJSON (builtins.readFile ./release-info/LanguageMachines-ticcutils.json);
in
stdenv.mkDerivation {
name = "ticcutils-${release.version}";
2017-08-08 09:34:09 +00:00
version = release.version;
src = fetchurl { inherit (release) url sha256;
name = "ticcutils-${release.version}.tar.gz"; };
nativeBuildInputs = [ pkg-config ];
buildInputs = [ automake autoconf libtool autoconf-archive libxml2
2017-08-08 09:34:09 +00:00
# optional:
zlib bzip2 libtar
# broken but optional: boost
];
preConfigure = "sh bootstrap.sh";
meta = with lib; {
2017-08-08 09:34:09 +00:00
description = "This module contains useful functions for general use in the TiCC software stack and beyond.";
homepage = "https://github.com/LanguageMachines/ticcutils";
2017-08-08 09:34:09 +00:00
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ roberth ];
};
}