nixpkgs/pkgs/applications/kde/minuet.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
671 B
Nix
Raw Normal View History

{ mkDerivation
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; {
homepage = "https://apps.kde.org/minuet/";
description = "Music Education Software";
2017-04-23 12:23:22 +00:00
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
};
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;
}