mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
721 B
Nix
24 lines
721 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "samplv1";
|
|
version = "0.9.11";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
|
|
sha256 = "17zs8kvvwqv00bm4lxpn09a5hxjlbz7k5mkl3k7jspw7rqn3djf2";
|
|
};
|
|
|
|
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qt5.qtbase qt5.qttools];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
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 ];
|
|
};
|
|
}
|