Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
901 B
Nix
52 lines
901 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
libarchive,
|
|
xz,
|
|
zlib,
|
|
bzip2,
|
|
meson,
|
|
pkg-config,
|
|
ninja,
|
|
qt6,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "libarchive-qt";
|
|
version = "2.0.8";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "marcusbritanicus";
|
|
repo = "libarchive-qt";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-31a6DsxObSJWyLfT6mVtyjloT26IwFHpH53iuyC2mco=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
qt6.wrapQtAppsNoGuiHook
|
|
];
|
|
|
|
buildInputs = [
|
|
libarchive
|
|
bzip2
|
|
zlib
|
|
xz
|
|
qt6.qtbase
|
|
];
|
|
|
|
mesonFlags = [ "-Duse_qt_version=qt6" ];
|
|
|
|
meta = {
|
|
description = "Qt based archiving solution with libarchive backend";
|
|
mainProgram = "archiver";
|
|
homepage = "https://gitlab.com/marcusbritanicus/libarchive-qt";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|