corearchiver: init at 4.2.0

This commit is contained in:
dan4ik 2021-07-22 20:42:25 +07:00
parent 5efc01ff8f
commit b866f9e5e9
2 changed files with 35 additions and 0 deletions

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

@ -1399,6 +1399,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 { };