libdeltachat: 1.153.0 -> 1.154.1 (#374638)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corearchiver / default.nix
blobd06bea646dc7e14fd60e92671fe14302650868a2
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   qtbase,
6   libarchive,
7   libarchive-qt,
8   cmake,
9   ninja,
10   libcprime,
11   libcsys,
14 mkDerivation rec {
15   pname = "corearchiver";
16   version = "4.5.0";
18   src = fetchFromGitLab {
19     owner = "cubocore/coreapps";
20     repo = pname;
21     rev = "v${version}";
22     hash = "sha256-TKBr/CFY4ixQnJuaN+wJB88s6g4lvQz4rwq9YsccRYk=";
23   };
25   nativeBuildInputs = [
26     cmake
27     ninja
28   ];
30   buildInputs = [
31     qtbase
32     libarchive-qt
33     libarchive
34     libcprime
35     libcsys
36   ];
38   meta = with lib; {
39     description = "Archiver from the C Suite to create and extract archives";
40     mainProgram = "corearchiver";
41     homepage = "https://gitlab.com/cubocore/coreapps/corearchiver";
42     license = licenses.gpl3Plus;
43     maintainers = with maintainers; [ dan4ik605743 ];
44     platforms = platforms.linux;
45   };