a66ee6d988
Semi-automatic update. These checks were performed: - built on NixOS - found 0.8.6 with grep in /nix/store/129kph83v0yw4jx5bgzb31127w3d1jwp-samplv1-0.8.6 - found 0.8.6 in filename of file in /nix/store/129kph83v0yw4jx5bgzb31127w3d1jwp-samplv1-0.8.6 cc "@goibhniu"
23 lines
718 B
Nix
23 lines
718 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "samplv1-${version}";
|
|
version = "0.8.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
|
sha256 = "035bq7yfg1yirsqk63zwkzjw9dxl52lrzq9y0w7nga0vb11xdfij";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|