22 lines
621 B
Nix
22 lines
621 B
Nix
{ stdenv, fetchurl, libjack2, libsndfile, lv2, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "samplv1-${version}";
|
|
version = "0.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
|
sha256 = "0494w1xhhadwzvdr0v4gg5pzr2w2ah2vk896znj59j1y9gn3gilq";
|
|
};
|
|
|
|
buildInputs = [ libjack2 libsndfile lv2 qt4 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
|
homepage = http://samplv1.sourceforge.net/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|