alvr: 20.11.1 -> 20.12.1 (#374869)
[NixPkgs.git] / pkgs / applications / audio / samplv1 / default.nix
blobcc46296342e44872e73c4b25cf6ea9e91dab93c9
2   mkDerivation,
3   lib,
4   fetchurl,
5   pkg-config,
6   libjack2,
7   alsa-lib,
8   liblo,
9   libsndfile,
10   lv2,
11   qtbase,
12   qttools,
13   rubberband,
16 mkDerivation rec {
17   pname = "samplv1";
18   version = "0.9.23";
20   src = fetchurl {
21     url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
22     sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0=";
23   };
25   nativeBuildInputs = [
26     qttools
27     pkg-config
28   ];
30   buildInputs = [
31     libjack2
32     alsa-lib
33     liblo
34     libsndfile
35     lv2
36     qtbase
37     rubberband
38   ];
40   meta = with lib; {
41     description = "Old-school all-digital polyphonic sampler synthesizer with stereo fx";
42     mainProgram = "samplv1_jack";
43     homepage = "http://samplv1.sourceforge.net/";
44     license = licenses.gpl2Plus;
45     platforms = platforms.linux;
46     maintainers = [ ];
47   };