From d920f67b64130ec8706df4e6970f2a685add11ae Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 15 Mar 2016 23:50:11 +0100 Subject: [PATCH] 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 --- pkgs/applications/audio/seq24/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/seq24/default.nix b/pkgs/applications/audio/seq24/default.nix index 63db865eba5d..7976a7bf6789 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 ]; }; }