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

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