nixpkgs/pkgs/applications/kde/kqtquickcharts.nix

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

16 lines
350 B
Nix
Raw Normal View History

2017-05-12 17:55:26 +00:00
{
mkDerivation, lib,
extra-cmake-modules,
qtbase, qtdeclarative,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kqtquickcharts";
2017-05-12 17:55:26 +00:00
meta = {
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-12 17:55:26 +00:00
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtbase qtdeclarative ];
}