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

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