nixpkgs/pkgs/applications/kde/minuet.nix

25 lines
575 B
Nix
Raw Normal View History

2017-04-23 05:23:22 -07:00
{ mkDerivation
, 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 {
name = "minuet";
meta = with lib; {
license = with licenses; [ lgpl21 gpl3 ];
2019-01-04 03:28:01 -08:00
maintainers = with maintainers; [ peterhoeg HaoZeke ];
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;
}