libbytesize: 2.10 -> 2.11 (#337267)

This commit is contained in:
Jan Tojnar 2024-09-01 14:40:54 +02:00 committed by GitHub
commit 5c40feae4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 24 additions and 20 deletions

View File

@ -1,31 +1,37 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, docbook_xml_dtd_43
, docbook_xsl
, gettext
, gmp
, gtk-doc
, libxslt
, mpfr
, pcre2
, pkg-config
, python3
{
lib,
autoreconfHook,
docbook_xml_dtd_43,
docbook_xsl,
fetchFromGitHub,
gettext,
gmp,
gtk-doc,
libxslt,
mpfr,
pcre2,
pkg-config,
python3,
stdenv,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libbytesize";
version = "2.10";
version = "2.11";
src = fetchFromGitHub {
owner = "storaged-project";
repo = "libbytesize";
rev = finalAttrs.version;
hash = "sha256-IPBoYcnSQ1/ws3mzPUXxgbetZkXRWrGhtakXaVVFb6U=";
hash = "sha256-scOnucn7xp6KKEtkpwfyrdzcntJF2l0h0fsQotcceLc=";
};
outputs = [ "out" "dev" "devdoc" "man" ];
outputs = [
"out"
"dev"
"devdoc"
"man"
];
nativeBuildInputs = [
autoreconfHook
@ -49,8 +55,8 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
homepage = "https://github.com/storaged-project/libbytesize";
description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes";
mainProgram = "bscalc";
license = lib.licenses.lgpl2Plus;
mainProgram = "bscalc";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.linux;
};

View File

@ -21144,8 +21144,6 @@ with pkgs;
libbs2b = callPackage ../development/libraries/audio/libbs2b { };
libbytesize = callPackage ../development/libraries/libbytesize { };
libcaca = callPackage ../development/libraries/libcaca { };
libcacard = callPackage ../development/libraries/libcacard { };