2016-09-12 00:24:51 +03:00
|
|
|
{ stdenv, fetchurl, alsaLib, cmake, gtk2, libjack2, libgnomecanvas
|
2012-03-24 17:22:14 +04:00
|
|
|
, libpthreadstubs, libsamplerate, libsndfile, libtool, libxml2
|
2015-08-29 15:12:18 +03:00
|
|
|
, pkgconfig, openssl }:
|
2012-03-24 17:22:14 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "petri-foo";
|
2014-09-01 00:03:48 +04:00
|
|
|
version = "0.1.87";
|
2012-03-24 17:22:14 +04:00
|
|
|
|
2014-09-01 00:03:48 +04:00
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "mirror://sourceforge/petri-foo/${pname}-${version}.tar.bz2";
|
2014-09-01 00:03:48 +04:00
|
|
|
sha256 = "0b25iicgn8c42487fdw32ycfrll1pm2zjgy5djvgw6mfcaa4gizh";
|
2012-03-24 17:22:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
2016-09-12 00:24:51 +03:00
|
|
|
[ alsaLib cmake gtk2 libjack2 libgnomecanvas libpthreadstubs
|
2015-08-29 15:12:18 +03:00
|
|
|
libsamplerate libsndfile libtool libxml2 pkgconfig openssl
|
2012-03-24 17:22:14 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MIDI controllable audio sampler";
|
|
|
|
longDescription = "a fork of Specimen";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://petri-foo.sourceforge.net";
|
2012-03-24 17:22:14 +04:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
|
|
}
|