mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
15 lines
350 B
Nix
15 lines
350 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
qtbase, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kqtquickcharts";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
}
|