mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
27 lines
671 B
Nix
27 lines
671 B
Nix
{ mkDerivation
|
|
, lib, extra-cmake-modules, gettext, python3
|
|
, drumstick, fluidsynth
|
|
, kcoreaddons, kcrash, kdoctools
|
|
, qtquickcontrols2, qtsvg, qttools, qtdeclarative
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "minuet";
|
|
meta = with lib; {
|
|
homepage = "https://apps.kde.org/minuet/";
|
|
description = "Music Education Software";
|
|
license = with licenses; [ lgpl21 gpl3 ];
|
|
maintainers = with maintainers; [ peterhoeg HaoZeke ];
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ];
|
|
|
|
propagatedBuildInputs = [
|
|
drumstick fluidsynth
|
|
kcoreaddons kcrash
|
|
qtquickcontrols2 qtsvg qttools
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|