about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/kcodecs.nix
blob: a62135150a0fe9fbf1ece92b46081853f4ae6623 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ mkDerivation, extra-cmake-modules, qtbase, qttools, gperf }:

mkDerivation {
  name = "kcodecs";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qttools gperf ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}