Unverified Commit 694492c9 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #131081 from dan4ik605743/corearchiver

parents 8eca793f de7687e7
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+33 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+4 −0
Original line number Diff line number Diff line
@@ -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 { };