muse: 4.1.0 -> 4.2.1

https://github.com/muse-sequencer/muse/releases/tag/4.2.1
add cmake-extra-modules as input
This commit is contained in:
Sergey Volkov 2023-10-23 17:34:39 +02:00
parent 942620ba9e
commit 8505127bf0

View File

@ -2,6 +2,7 @@
, stdenv
, fetchFromGitHub
, cmake
, extra-cmake-modules
, pkg-config
, qttools
, wrapQtAppsHook
@ -27,18 +28,24 @@
stdenv.mkDerivation (finalAttrs: {
pname = "muse-sequencer";
version = "4.1.0";
version = "4.2.1";
src = fetchFromGitHub {
owner = "muse-sequencer";
repo = "muse";
rev = finalAttrs.version;
hash = "sha256-JPvoximDL4oKO8reXW7alMegwUyUTSAcdq3ueXeUMMY=";
hash = "sha256-LxibuqopMHuKEfTWXSEXc1g3wTm2F3NQRiV71FHvaY0=";
};
sourceRoot = "${finalAttrs.src.name}/src";
nativeBuildInputs = [ cmake pkg-config qttools wrapQtAppsHook ];
nativeBuildInputs = [
cmake
extra-cmake-modules
pkg-config
qttools
wrapQtAppsHook
];
buildInputs = [
alsa-lib