nixpkgs/pkgs/os-specific/linux/libzbd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
962 B
Nix
Raw Normal View History

2022-09-04 02:44:38 +02:00
{ lib
, stdenv
, autoconf-archive
, autoreconfHook
, fetchFromGitHub
, gtk3
, libtool
, pkg-config
, guiSupport ? false
}:
stdenv.mkDerivation rec {
pname = "libzbd";
2023-02-05 00:02:18 +01:00
version = "2.0.4";
2022-09-04 02:44:38 +02:00
src = fetchFromGitHub {
owner = "westerndigitalcorporation";
repo = "libzbd";
rev = "v${version}";
2023-02-05 00:02:18 +01:00
sha256 = "sha256-iMQjOWsgsS+uI8mqoOXHRAV1+SIu1McUAcrsY+/zcu8=";
2022-09-04 02:44:38 +02:00
};
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;
};
}