1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{
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.0";
src = fetchurl {
url = "mirror://sourceforge/samplv1/samplv1-${version}.tar.gz";
hash = "sha256-ZmRsiFDqJsG28FiFR/RbeXkeeLn2HBfImKQM5PaRF78=";
};
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 = [ ];
};
}
|