mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
corearchiver: init at 4.2.0
This commit is contained in:
parent
5efc01ff8f
commit
b866f9e5e9
33
pkgs/tools/archivers/corearchiver/default.nix
Normal file
33
pkgs/tools/archivers/corearchiver/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue