f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
38 lines
832 B
Nix
38 lines
832 B
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, gtk3
|
|
, libtool
|
|
, pkg-config
|
|
, guiSupport ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libzbc";
|
|
version = "6.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "westerndigitalcorporation";
|
|
repo = "libzbc";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-L3i3gBIfgu3mCNvCLxizwFNxBenSZsB6elCkGWdPc4Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
libtool
|
|
] ++ lib.optionals guiSupport [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals guiSupport [ gtk3 ];
|
|
|
|
configureFlags = lib.optional guiSupport "--enable-gui";
|
|
|
|
meta = with lib; {
|
|
description = "ZBC device manipulation library";
|
|
homepage = "https://github.com/westerndigitalcorporation/libzbc";
|
|
maintainers = [ ];
|
|
license = with licenses; [ bsd2 lgpl3Plus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|