anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corearchiver / default.nix
blob691917e28da9f01015f74ebb100ef9875c7a95fd
1 { mkDerivation, lib, fetchFromGitLab, qtbase, libarchive, libarchive-qt, cmake, ninja, libcprime, libcsys }:
3 mkDerivation rec {
4   pname = "corearchiver";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore/coreapps";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-TKBr/CFY4ixQnJuaN+wJB88s6g4lvQz4rwq9YsccRYk=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     libarchive-qt
22     libarchive
23     libcprime
24     libcsys
25   ];
27   meta = with lib; {
28     description = "Archiver from the C Suite to create and extract archives";
29     mainProgram = "corearchiver";
30     homepage = "https://gitlab.com/cubocore/coreapps/corearchiver";
31     license = licenses.gpl3Plus;
32     maintainers = with maintainers; [ dan4ik605743 ];
33     platforms = platforms.linux;
34   };