55 lines
896 B
Nix
55 lines
896 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
fetchurl,
|
||
|
|
pkg-config,
|
||
|
|
libjack2,
|
||
|
|
alsa-lib,
|
||
|
|
liblo,
|
||
|
|
libsndfile,
|
||
|
|
lv2,
|
||
|
|
qtbase,
|
||
|
|
qttools,
|
||
|
|
rubberband,
|
||
|
|
wrapQtAppsHook,
|
||
|
|
cmake,
|
||
|
|
qtsvg,
|
||
|
|
}:
|
||
|
|
|
||
|
|
stdenv.mkDerivation rec {
|
||
|
|
pname = "samplv1";
|
||
|
|
version = "1.3.2";
|
||
|
|
|
||
|
|
src = fetchurl {
|
||
|
|
url = "mirror://sourceforge/samplv1/samplv1-${version}.tar.gz";
|
||
|
|
hash = "sha256-YCxt9RAP02uAigddA6HjBt2ryM6MyOtI3L2eLg0AhFg=";
|
||
|
|
};
|
||
|
|
|
||
|
|
nativeBuildInputs = [
|
||
|
|
qttools
|
||
|
|
pkg-config
|
||
|
|
wrapQtAppsHook
|
||
|
|
cmake
|
||
|
|
];
|
||
|
|
|
||
|
|
buildInputs = [
|
||
|
|
libjack2
|
||
|
|
alsa-lib
|
||
|
|
liblo
|
||
|
|
libsndfile
|
||
|
|
lv2
|
||
|
|
qtbase
|
||
|
|
rubberband
|
||
|
|
qtsvg
|
||
|
|
];
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
description = "Old-school all-digital polyphonic sampler synthesizer with stereo fx";
|
||
|
|
mainProgram = "samplv1_jack";
|
||
|
|
homepage = "http://samplv1.sourceforge.net/";
|
||
|
|
license = lib.licenses.gpl2Plus;
|
||
|
|
platforms = lib.platforms.linux;
|
||
|
|
maintainers = [ ];
|
||
|
|
};
|
||
|
|
}
|