anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / synthv1 / default.nix
bloba42671b3d303d38133c42ca3911c270bf4488333
1 { mkDerivation, lib, fetchurl, pkg-config, qtbase, qttools, libjack2, alsa-lib, liblo, lv2 }:
3 mkDerivation rec {
4   pname = "synthv1";
5   version = "0.9.23";
7   src = fetchurl {
8     url = "mirror://sourceforge/synthv1/${pname}-${version}.tar.gz";
9     sha256 = "sha256-0V72T51icT/t9fJf4mwcMYZLjzTPnmiCbU+BdwnCmw4=";
10   };
12   buildInputs = [ qtbase qttools libjack2 alsa-lib liblo lv2 ];
14   nativeBuildInputs = [ pkg-config ];
16   meta = with lib; {
17     description = "Old-school 4-oscillator subtractive polyphonic synthesizer with stereo fx";
18     mainProgram = "synthv1_jack";
19     homepage = "https://synthv1.sourceforge.io/";
20     license = licenses.gpl2Plus;
21     platforms = platforms.linux;
22     maintainers = [ ];
23   };