nixpkgs/pkgs/development/libraries/kde-frameworks/kdav.nix

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

16 lines
340 B
Nix
Raw Normal View History

2017-05-10 16:00:43 +00:00
{
2020-08-22 11:23:59 +00:00
mkDerivation, lib,
2017-05-10 16:00:43 +00:00
extra-cmake-modules, kdoctools,
kcoreaddons, kio, qtxmlpatterns,
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "kdav";
2017-05-10 16:00:43 +00:00
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kcoreaddons kio qtxmlpatterns ];
outputs = [ "out" "dev" ];
}