mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
21 lines
622 B
Nix
21 lines
622 B
Nix
{ stdenv, fetchurl, jackaudio, libsndfile, lv2, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "samplv1-${version}";
|
|
version = "0.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
|
sha256 = "04vldwpm4059czwd4i5yv07daqjnzs2zsrld779likans9ib3ri8";
|
|
};
|
|
|
|
buildInputs = [ jackaudio 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 ];
|
|
};
|
|
} |