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-05-24 23:33:29 +01:00
version = "2.3";
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-05-24 23:33:29 +01:00
sha256 = "1nrlmn63k0ix1yzn8v4lni5n5b4c0b6w9f33p1ig113ymmdvcc0h";
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;
};
}