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
352 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 = {
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-10 16:00:43 +00:00
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kcoreaddons kio qtxmlpatterns ];
outputs = [ "out" "dev" ];
}