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

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

17 lines
406 B
Nix
Raw Normal View History

2017-05-10 16:11:21 +00:00
{
mkDerivation, lib,
2017-05-10 16:11:21 +00:00
extra-cmake-modules, kdoctools,
qtbase, qtdeclarative, qttools,
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "kholidays";
2017-05-10 16:11:21 +00:00
meta = {
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
maintainers = with lib.maintainers; [ bkchr ];
2017-05-10 16:11:21 +00:00
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ qtbase qtdeclarative qttools ];
outputs = [ "out" "dev" ];
}