summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/kcodecs.nix
blob: 4a1f82f81566266bcbd48ff83a3dc546116a81a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  qtbase,
  qttools,
  gperf,
}:

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