nixpkgs/pkgs/development/libraries/libbytesize/default.nix

32 lines
888 B
Nix
Raw Normal View History

2018-02-25 13:12:21 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gettext
, gtk-doc, libxslt, docbook_xml_dtd_43, docbook_xsl
2019-05-24 11:59:21 +00:00
, python3, pcre2, gmp, mpfr
2018-02-25 13:12:21 +00:00
}:
let
version = "2.1";
2018-02-25 13:12:21 +00:00
in stdenv.mkDerivation rec {
name = "libbytesize-${version}";
src = fetchFromGitHub {
owner = "storaged-project";
repo = "libbytesize";
rev = version;
sha256 = "0qb6zx2fdghm21lishlcrhnwf4wwy5p69dsgp0504kn93ii7mw3m";
2018-02-25 13:12:21 +00:00
};
outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [ autoreconfHook pkgconfig gettext gtk-doc libxslt docbook_xml_dtd_43 docbook_xsl python3 ];
2019-05-24 11:59:21 +00:00
buildInputs = [ pcre2 gmp mpfr ];
2018-02-25 13:12:21 +00:00
meta = with stdenv.lib; {
description = "A tiny library providing a C class for working with arbitrary big sizes in bytes";
homepage = src.meta.homepage;
license = licenses.lgpl2Plus;
maintainers = with maintainers; [];
platforms = platforms.linux;
};
}