nixpkgs/pkgs/applications/kde/minuet.nix

26 lines
639 B
Nix
Raw Permalink Normal View History

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