depot/pkgs/development/libraries/kde-frameworks/syndication.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
222 B
Nix
Raw Normal View History

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