mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
93240a6c09
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/samplv1/versions
24 lines
718 B
Nix
24 lines
718 B
Nix
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "samplv1-${version}";
|
|
version = "0.9.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/samplv1/${name}.tar.gz";
|
|
sha256 = "138kd9szgn3b97s7crhsyj8pgwb0bn4l9knd4zliqjgj2f1bs9x0";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|