Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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 = [ ];
|
|
};
|
|
}
|