aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/muse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/muse/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/muse/default.nix24
1 files changed, 7 insertions, 17 deletions
diff --git a/nixpkgs/pkgs/applications/audio/muse/default.nix b/nixpkgs/pkgs/applications/audio/muse/default.nix
index 372c8faf773..f1fad05bece 100644
--- a/nixpkgs/pkgs/applications/audio/muse/default.nix
+++ b/nixpkgs/pkgs/applications/audio/muse/default.nix
@@ -1,7 +1,9 @@
{ stdenv
, fetchFromGitHub
, libjack2
-, qt5
+, wrapQtAppsHook
+, qtsvg
+, qttools
, cmake
, libsndfile
, libsamplerate
@@ -13,7 +15,6 @@
, dssi
, liblo
, pkgconfig
-, gitAndTools
}:
stdenv.mkDerivation {
@@ -45,14 +46,14 @@ stdenv.mkDerivation {
nativeBuildInputs = [
pkgconfig
- gitAndTools.gitFull
+ wrapQtAppsHook
+ qttools
+ cmake
];
buildInputs = [
libjack2
- qt5.qtsvg
- qt5.qttools
- cmake
+ qtsvg
libsndfile
libsamplerate
ladspaH
@@ -65,15 +66,4 @@ stdenv.mkDerivation {
];
sourceRoot = "source/muse3";
-
- buildPhase = ''
- cd ..
- bash compile_muse.sh
- '';
-
- installPhase = ''
- mkdir $out
- cd build
- make install
- '';
}