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

26 lines
724 B
Nix
Raw Normal View History

2019-04-04 18:17:56 +02:00
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qt5, autoconf, pkgconfig }:
stdenv.mkDerivation rec {
pname = "qsynth";
version = "0.5.7";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
sha256 = "18im4w8agj60nkppwbkxqnhpp13z5li3w30kklv4lgs20rvgbvl6";
};
2019-04-04 18:17:56 +02:00
nativeBuildInputs = [ autoconf pkgconfig ];
2017-12-26 04:18:10 +01:00
2019-04-04 18:17:56 +02:00
buildInputs = [ alsaLib fluidsynth libjack2 qt5.qtbase qt5.qttools qt5.qtx11extras ];
2017-12-26 04:18:10 +01:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Fluidsynth GUI";
homepage = https://sourceforge.net/projects/qsynth;
license = licenses.gpl2Plus;
2017-12-26 04:18:10 +01:00
maintainers = with maintainers; [ goibhniu ];
2014-01-19 12:26:35 +01:00
platforms = platforms.linux;
};
}