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

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

39 lines
826 B
Nix
Raw Normal View History

2022-09-04 00:37:27 +00:00
{ lib
, stdenv
, autoreconfHook
, fetchFromGitHub
, gtk3
, libtool
, pkg-config
, guiSupport ? false
}:
stdenv.mkDerivation rec {
pname = "libzbc";
2022-11-04 11:14:17 +00:00
version = "5.13.0";
2022-09-04 00:37:27 +00:00
src = fetchFromGitHub {
owner = "westerndigitalcorporation";
repo = "libzbc";
rev = "v${version}";
2022-11-04 11:14:17 +00:00
sha256 = "6xkA96bgQ2Ik1vEwkw7hwjMbjMSlopzv5ziTh60Mjx0=";
2022-09-04 00:37:27 +00:00
};
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 = [ ];
2022-09-04 00:37:27 +00:00
license = with licenses; [ bsd2 lgpl3Plus ];
platforms = platforms.linux;
};
}