mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
783a35ca3d
Feel free to remove the following packages, which were essentially personal tools:
- apc-temp-fetch:
this is outdated anyways, it needs flit to build now,
see also: 53bcaab3e9/net-analyzer/APC-Temp-fetch/APC-Temp-fetch-0.0.9.ebuild
- libowlevelzs
- zs-apc-spdu-ctl
- zs-wait4host
- zstxtns-utils
39 lines
826 B
Nix
39 lines
826 B
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, gtk3
|
|
, libtool
|
|
, pkg-config
|
|
, guiSupport ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libzbc";
|
|
version = "5.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "westerndigitalcorporation";
|
|
repo = "libzbc";
|
|
rev = "v${version}";
|
|
sha256 = "6xkA96bgQ2Ik1vEwkw7hwjMbjMSlopzv5ziTh60Mjx0=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|