summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/karchive.nix
blob: bd010f3f11cf279c242bbc7053d92611e43237a2 (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 {
  name = "karchive";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ bzip2 xz zlib zstd ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}