mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01: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.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
|
sha256 = "1vr6jbqnsgdq3v2h1ndp4pirnil3119dqwlq0k0kdscmcskvb9j4";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
} |