libzbd: init at 2.0.3

This commit is contained in:
Alain Zscheile 2022-09-04 02:44:38 +02:00
parent 9136910f1e
commit 8a773bd46a
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, stdenv
, autoconf-archive
, autoreconfHook
, fetchFromGitHub
, gtk3
, libtool
, pkg-config
, guiSupport ? false
}:
stdenv.mkDerivation rec {
pname = "libzbd";
version = "2.0.3";
src = fetchFromGitHub {
owner = "westerndigitalcorporation";
repo = "libzbd";
rev = "v${version}";
sha256 = "GoCHwuR4ylyaN/FskIqKyAPe2A2O3iFVcI3UxPlqvtk=";
};
nativeBuildInputs = [
autoconf-archive # this can be removed with the next release
autoreconfHook
libtool
] ++ lib.optionals guiSupport [ pkg-config ];
buildInputs = lib.optionals guiSupport [ gtk3 ];
configureFlags = lib.optional guiSupport "--enable-gui";
meta = with lib; {
description = "Zoned block device manipulation library and tools";
homepage = "https://github.com/westerndigitalcorporation/libzbd";
maintainers = with maintainers; [ zseri ];
license = with licenses; [ lgpl3Plus gpl3Plus ];
platforms = platforms.linux;
};
}

View File

@ -4208,6 +4208,8 @@ with pkgs;
libzbc = callPackage ../os-specific/linux/libzbc { };
libzbd = callPackage ../os-specific/linux/libzbd { };
lifeograph = callPackage ../applications/editors/lifeograph { };
limitcpu = callPackage ../tools/misc/limitcpu { };