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 19:55:26 +02:00
{
mkDerivation, lib,
extra-cmake-modules,
qtbase, qtdeclarative,
}:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "kqtquickcharts";
2017-05-12 19:55:26 +02:00
meta = {
2022-10-27 22:47:29 +02:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-12 19:55:26 +02:00
maintainers = [ lib.maintainers.ttuegel ];
};
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtbase qtdeclarative ];
}