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

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