3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libbytesize/default.nix

33 lines
897 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 12:59:21 +01:00
, python3, pcre2, gmp, mpfr
2018-02-25 13:12:21 +00:00
}:
let
2020-02-06 09:31:46 +00:00
version = "2.2";
2018-02-25 13:12:21 +00:00
in stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "libbytesize";
inherit version;
2018-02-25 13:12:21 +00:00
src = fetchFromGitHub {
owner = "storaged-project";
repo = "libbytesize";
rev = version;
2020-02-06 09:31:46 +00:00
sha256 = "0n4gmn68ypsk3gcw6akcghlgk3aj3wskwg3mlg93cw5y3a33nbhm";
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 12:59:21 +01: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;
};
}