summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/kde-frameworks/syndication.nix
blob: d0ffb5c27e2fe66abceefee499d63d775216f988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  mkDerivation,
  lib,
  cmake,
  extra-cmake-modules,
  kcodecs,
}:

mkDerivation {
  pname = "syndication";
  meta.maintainers = [ lib.maintainers.bkchr ];
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];
  buildInputs = [ kcodecs ];
  outputs = [
    "out"
    "dev"
  ];
}