Merge pull request #131081 from dan4ik605743/corearchiver

This commit is contained in:
Sandro 2021-07-26 15:06:56 +00:00 committed by GitHub
commit 694492c912
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 70 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

@ -0,0 +1,33 @@
{ mkDerivation, lib, fetchFromGitLab, qtbase, libarchive, libarchive-qt, libcprime, cmake, ninja, }:
mkDerivation rec {
pname = "corearchiver";
version = "4.2.0";
src = fetchFromGitLab {
owner = "cubocore/coreapps";
repo = pname;
rev = "v${version}";
sha256 = "sha256-FJGsQp1lbsrvlzKPiTv/FC9RH2+JRwwIvkLDTFW8t5s=";
};
nativeBuildInputs = [
cmake
ninja
];
buildInputs = [
qtbase
libcprime
libarchive-qt
libarchive
];
meta = with lib; {
description = "Archiver from the C Suite to create and extract archives";
homepage = "https://gitlab.com/cubocore/coreapps/corearchiver";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dan4ik605743 ];
platforms = platforms.linux;
};
}

View file

@ -1409,6 +1409,8 @@ in
codeql = callPackage ../development/tools/analysis/codeql { };
corearchiver = libsForQt5.callPackage ../tools/archivers/corearchiver { };
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
fedora-backgrounds = callPackage ../data/misc/fedora-backgrounds { };
@ -16155,6 +16157,8 @@ in
autoreconfHook = buildPackages.autoreconfHook269;
};
libarchive-qt = libsForQt5.callPackage ../development/libraries/libarchive-qt { };
libasr = callPackage ../development/libraries/libasr { };
libass = callPackage ../development/libraries/libass { };