nixpkgs/pkgs/applications/kde/minuet.nix

25 lines
575 B
Nix
Raw Normal View History

2017-04-23 12:23:22 +00:00
{ mkDerivation
, lib, extra-cmake-modules, gettext, python
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 {
name = "minuet";
meta = with lib; {
license = with licenses; [ lgpl21 gpl3 ];
2019-01-04 11:28:01 +00:00
maintainers = with maintainers; [ peterhoeg HaoZeke ];
2017-04-23 12:23:22 +00:00
};
2019-01-04 08:56:49 +00:00
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python 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;
}