nixpkgs/pkgs/applications/kde/minuet.nix

25 lines
575 B
Nix
Raw Normal View History

2017-04-23 08:23:22 -04:00
{ mkDerivation
, lib, extra-cmake-modules, gettext, python
2017-04-23 08:23:22 -04:00
, drumstick, fluidsynth
, kcoreaddons, kcrash, kdoctools
2019-01-04 03:56:49 -05:00
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
2017-04-23 08:23:22 -04:00
}:
mkDerivation {
name = "minuet";
meta = with lib; {
license = with licenses; [ lgpl21 gpl3 ];
2019-01-04 06:28:01 -05:00
maintainers = with maintainers; [ peterhoeg HaoZeke ];
2017-04-23 08:23:22 -04:00
};
2019-01-04 03:56:49 -05:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python qtdeclarative ];
2017-04-23 08:23:22 -04:00
propagatedBuildInputs = [
drumstick fluidsynth
kcoreaddons kcrash
qtquickcontrols2 qtsvg qttools
];
2017-04-23 08:23:22 -04:00
enableParallelBuilding = true;
}