libarchive-qt: init at 2.0.4

This commit is contained in:
dan4ik 2021-07-22 20:49:03 +07:00
parent b866f9e5e9
commit de7687e739
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ mkDerivation, lib, fetchFromGitLab, libarchive, xz, zlib, bzip2, cmake, ninja }:
mkDerivation rec {
pname = "libarchive-qt";
version = "2.0.4";
src = fetchFromGitLab {
owner = "marcusbritanicus";
repo = pname;
rev = "v${version}";
sha256 = "sha256-onTV9dgk6Yl9H35EvA6/8vk1IrYH8vg9OQNVgzkt4q4";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
libarchive
bzip2
zlib
xz
];
meta = with lib; {
description = "A Qt based archiving solution with libarchive backend";
homepage = "https://gitlab.com/marcusbritanicus/libarchive-qt";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.linux;
};
}

View file

@ -16139,6 +16139,8 @@ in
autoreconfHook = buildPackages.autoreconfHook269;
};
libarchive-qt = libsForQt5.callPackage ../development/libraries/libarchive-qt { };
libasr = callPackage ../development/libraries/libasr { };
libass = callPackage ../development/libraries/libass { };