Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
896 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 = [ ];
};
}