summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/syndication.nix
blob: fd5a9b9db846429b61bd87d6ee8af64793cbfbf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ mkDerivation, lib
, extra-cmake-modules
, kcodecs
}:

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