nixpkgs/pkgs/os-specific/linux/libzbd/default.nix
2022-09-04 16:12:12 +02:00

41 lines
955 B
Nix

{ 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;
};
}