libzbd: init at 2.0.3
This commit is contained in:
parent
9136910f1e
commit
8a773bd46a
40
pkgs/os-specific/linux/libzbd/default.nix
Normal file
40
pkgs/os-specific/linux/libzbd/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -4208,6 +4208,8 @@ with pkgs;
|
|||||||
|
|
||||||
libzbc = callPackage ../os-specific/linux/libzbc { };
|
libzbc = callPackage ../os-specific/linux/libzbc { };
|
||||||
|
|
||||||
|
libzbd = callPackage ../os-specific/linux/libzbd { };
|
||||||
|
|
||||||
lifeograph = callPackage ../applications/editors/lifeograph { };
|
lifeograph = callPackage ../applications/editors/lifeograph { };
|
||||||
|
|
||||||
limitcpu = callPackage ../tools/misc/limitcpu { };
|
limitcpu = callPackage ../tools/misc/limitcpu { };
|
||||||
|
Loading…
Reference in New Issue
Block a user