summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/karchive.nix
blob: 822b28f3deea166542e1379f91ea71bdb515f2e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation,
  extra-cmake-modules,
  bzip2, xz, qtbase, zlib, zstd
}:

mkDerivation {
  pname = "karchive";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ bzip2 xz zlib zstd ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}