nixpkgs/pkgs/development/libraries/libarchive-qt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
761 B
Nix
Raw Normal View History

2022-03-07 03:04:32 +00:00
{ mkDerivation, lib, fetchFromGitLab, libarchive, xz, zlib, bzip2, meson, pkg-config, ninja }:
2021-07-22 13:49:03 +00:00
mkDerivation rec {
pname = "libarchive-qt";
2022-03-07 03:04:32 +00:00
version = "2.0.7";
2021-07-22 13:49:03 +00:00
src = fetchFromGitLab {
owner = "marcusbritanicus";
repo = pname;
rev = "v${version}";
2022-03-07 03:04:32 +00:00
sha256 = "sha256-KRywB+Op44N00q9tgO2WNCliRgUDRvrCms1O8JYt62o=";
2021-07-22 13:49:03 +00:00
};
nativeBuildInputs = [
2022-03-07 03:04:32 +00:00
meson
2021-07-22 13:49:03 +00:00
ninja
2022-03-07 03:04:32 +00:00
pkg-config
2021-07-22 13:49:03 +00:00
];
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;
};
}