nixpkgs/pkgs/applications/audio/samplv1/default.nix

24 lines
723 B
Nix
Raw Normal View History

2017-02-28 15:29:19 +00:00
{ stdenv, fetchurl, pkgconfig, libjack2, alsaLib, liblo, libsndfile, lv2, qt5 }:
stdenv.mkDerivation rec {
pname = "samplv1";
2020-03-28 11:31:57 +00:00
version = "0.9.13";
src = fetchurl {
url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
2020-03-28 11:31:57 +00:00
sha256 = "0clsp6s5qfnh0xaxbd35vq2ppi72q9dfayrzlgl73800a8p7gh9m";
};
2016-11-01 01:52:20 +00:00
buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qt5.qtbase qt5.qttools];
2017-02-28 15:29:19 +00:00
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "An old-school all-digital polyphonic sampler synthesizer with stereo fx";
2020-03-28 11:31:57 +00:00
homepage = "http://samplv1.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}