nixpkgs/pkgs/applications/kde/minuet.nix

26 lines
637 B
Nix
Raw Normal View History

2020-11-04 04:49:42 -08:00
{ mkDerivation, qtbase
, lib, extra-cmake-modules, gettext, python
2017-04-23 05:23:22 -07:00
, drumstick, fluidsynth
, kcoreaddons, kcrash, kdoctools
2019-01-04 00:56:49 -08:00
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
2017-04-23 05:23:22 -07:00
}:
mkDerivation {
2020-12-24 15:05:07 -08:00
pname = "minuet";
2017-04-23 05:23:22 -07:00
meta = with lib; {
license = with licenses; [ lgpl21 gpl3 ];
2019-01-04 03:28:01 -08:00
maintainers = with maintainers; [ peterhoeg HaoZeke ];
2020-11-04 04:49:42 -08:00
broken = lib.versionOlder qtbase.version "5.14";
2017-04-23 05:23:22 -07:00
};
2019-01-04 00:56:49 -08:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python qtdeclarative ];
2017-04-23 05:23:22 -07:00
propagatedBuildInputs = [
drumstick fluidsynth
kcoreaddons kcrash
qtquickcontrols2 qtsvg qttools
];
2017-04-23 05:23:22 -07:00
enableParallelBuilding = true;
}