571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
963 B
Nix
42 lines
963 B
Nix
{ lib
|
|
, stdenv
|
|
, autoconf-archive
|
|
, autoreconfHook
|
|
, fetchFromGitHub
|
|
, gtk3
|
|
, libtool
|
|
, pkg-config
|
|
, guiSupport ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libzbd";
|
|
version = "2.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "westerndigitalcorporation";
|
|
repo = "libzbd";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iMQjOWsgsS+uI8mqoOXHRAV1+SIu1McUAcrsY+/zcu8=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "zbd";
|
|
homepage = "https://github.com/westerndigitalcorporation/libzbd";
|
|
maintainers = [ ];
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|