nixpkgs/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

2018-09-13 09:28:22 +02:00
{ mkDerivation, lib
, extra-cmake-modules
, kcodecs
}:
mkDerivation {
2022-02-23 18:28:27 +01:00
pname = "syndication";
meta.maintainers = [ lib.maintainers.bkchr ];
2018-09-13 09:28:22 +02:00
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ kcodecs ];
}