2015-06-27 08:17:52 +01:00
|
|
|
{ stdenv, fetchurl, alsaLib, cmake, gtk, libjack2, libgnomecanvas
|
2012-03-24 13:22:14 +00:00
|
|
|
, libpthreadstubs, libsamplerate, libsndfile, libtool, libxml2
|
|
|
|
, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-31 21:03:48 +01:00
|
|
|
name = "petri-foo-${version}";
|
|
|
|
version = "0.1.87";
|
2012-03-24 13:22:14 +00:00
|
|
|
|
2014-08-31 21:03:48 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/petri-foo/${name}.tar.bz2";
|
|
|
|
sha256 = "0b25iicgn8c42487fdw32ycfrll1pm2zjgy5djvgw6mfcaa4gizh";
|
2012-03-24 13:22:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
2015-06-27 08:17:52 +01:00
|
|
|
[ alsaLib cmake gtk libjack2 libgnomecanvas libpthreadstubs
|
2012-03-24 13:22:14 +00:00
|
|
|
libsamplerate libsndfile libtool libxml2 pkgconfig
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MIDI controllable audio sampler";
|
|
|
|
longDescription = "a fork of Specimen";
|
|
|
|
homepage = http://petri-foo.sourceforge.net;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|