mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
libarchive-qt: init at 2.0.4
This commit is contained in:
parent
b866f9e5e9
commit
de7687e739
33
pkgs/development/libraries/libarchive-qt/default.nix
Normal file
33
pkgs/development/libraries/libarchive-qt/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -16139,6 +16139,8 @@ in
|
|||
autoreconfHook = buildPackages.autoreconfHook269;
|
||||
};
|
||||
|
||||
libarchive-qt = libsForQt5.callPackage ../development/libraries/libarchive-qt { };
|
||||
|
||||
libasr = callPackage ../development/libraries/libasr { };
|
||||
|
||||
libass = callPackage ../development/libraries/libass { };
|
||||
|
|
Loading…
Reference in a new issue