summary refs log tree commit diff
path: root/pkgs/applications/audio/muse
diff options
context:
space:
mode:
authorPhilipp Volguine <phil.volguine@gmail.com>2019-03-24 18:22:03 -0400
committerPhilipp Volguine <phil.volguine@gmail.com>2019-03-24 18:22:03 -0400
commit76e46fce41a36a4bd1f34c770c63f47888ae2a91 (patch)
tree9eb5a0b4449cded39d670b8ca188c4f1f1a3caee /pkgs/applications/audio/muse
parent8a5317f25bf4ee6776c97112ab9801ff75972846 (diff)
downloadnixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar.gz
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar.bz2
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar.lz
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar.xz
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.tar.zst
nixpkgs-76e46fce41a36a4bd1f34c770c63f47888ae2a91.zip
muse-sequencer: 3.0.2 -> 3.1pre1
- The old version was no longer building on hydra, this fixes that.
- Moved some dependencies to nativeBuildInputs
Diffstat (limited to 'pkgs/applications/audio/muse')
-rw-r--r--pkgs/applications/audio/muse/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/applications/audio/muse/default.nix b/pkgs/applications/audio/muse/default.nix
index 9687ff3106b..b3efa82ead4 100644
--- a/pkgs/applications/audio/muse/default.nix
+++ b/pkgs/applications/audio/muse/default.nix
@@ -18,7 +18,7 @@
 
 stdenv.mkDerivation rec {
   name = "muse-sequencer-${version}";
-  version = "3.0.2";
+  version = "3.1pre1";
 
   meta = with stdenv.lib; {
     homepage = http://www.muse-sequencer.org;
@@ -38,11 +38,16 @@ stdenv.mkDerivation rec {
     fetchFromGitHub {
       owner = "muse-sequencer";
       repo = "muse";
-      rev = "02d9dc6abd757c3c1783fdd46dacd3c4ef2c0a6d";
-      sha256 = "0pn0mcg79z3bhjwxbss3ylypdz3gg70q5d1ij3x8yw65ryxbqf51";
+      rev = "2167ae053c16a633d8377acdb1debaac10932838";
+      sha256 = "0rsdx8lvcbz5bapnjvypw8h8bq587s9z8cf2znqrk6ah38s6fsrf";
     };
 
 
+  nativeBuildInputs = [
+    pkgconfig
+    gitAndTools.gitFull
+  ];
+
   buildInputs = [
     libjack2
     qt5.qtsvg
@@ -57,8 +62,6 @@ stdenv.mkDerivation rec {
     lash
     dssi
     liblo
-    pkgconfig
-    gitAndTools.gitFull
   ];
 
   sourceRoot = "source/muse3";