about summary refs log tree commit diff
path: root/pkgs/applications/audio/seq24
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-15 23:50:11 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-03-16 21:10:20 +0100
commitd920f67b64130ec8706df4e6970f2a685add11ae (patch)
tree8b0048bfb661547ed3f981560cacb3144eb491a9 /pkgs/applications/audio/seq24
parenta1de2259131a144e93426ec6dae21a305e733ee4 (diff)
seq24: 0.9.2 -> 0.9.3
Five years in the making. Fixed bugs:
* Fix LASH support (crash on 64 Bit systems)
* Fix broken JACK transport with newer jackd version
* Fix clock tick drift
* Fix jack session commandline (obsolete --file option removed)

General Changes:
* C++11 compatible compiler required
Diffstat (limited to 'pkgs/applications/audio/seq24')
-rw-r--r--pkgs/applications/audio/seq24/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/audio/seq24/default.nix b/pkgs/applications/audio/seq24/default.nix
index 63db865eba5da..7976a7bf67896 100644
--- a/pkgs/applications/audio/seq24/default.nix
+++ b/pkgs/applications/audio/seq24/default.nix
@@ -2,20 +2,21 @@
 
 stdenv.mkDerivation  rec {
   name = "seq24-${version}";
-  version = "0.9.2";
+  version = "0.9.3";
 
   src = fetchurl {
     url = "http://launchpad.net/seq24/trunk/${version}/+download/${name}.tar.gz";
-    sha256 = "07n80zj95i80vjmsflnlbqx5vv90qmp5f6a0zap8d30849l4y258";
+    sha256 = "1qpyb7355s21sgy6gibkybxpzx4ikha57a8w644lca6qy9mhcwi3";
   };
 
-  buildInputs = [ alsaLib gtkmm libjack2 pkgconfig ];
+  buildInputs = [ alsaLib gtkmm libjack2 ];
+  nativeBuildInputs = [ pkgconfig ];
 
   meta = with stdenv.lib; {
     description = "minimal loop based midi sequencer";
     homepage = "http://www.filter24.org/seq24";
     license = licenses.gpl2;
     platforms = platforms.linux;
-    maintainers = [ maintainers.goibhniu ];
+    maintainers = with maintainers; [ goibhniu nckx ];
   };
 }