nixpkgs/pkgs/applications/audio/seq24/default.nix
Tobias Geerinckx-Rice d920f67b64 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
2016-03-16 21:10:20 +01:00

23 lines
651 B
Nix

{ stdenv, fetchurl, alsaLib, gtkmm, libjack2, pkgconfig }:
stdenv.mkDerivation rec {
name = "seq24-${version}";
version = "0.9.3";
src = fetchurl {
url = "http://launchpad.net/seq24/trunk/${version}/+download/${name}.tar.gz";
sha256 = "1qpyb7355s21sgy6gibkybxpzx4ikha57a8w644lca6qy9mhcwi3";
};
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 = with maintainers; [ goibhniu nckx ];
};
}