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

28 lines
740 B
Nix
Raw Normal View History

{ lib, fetchurl, alsa-lib, fluidsynth, libjack2, autoconf, pkg-config
, mkDerivation, qtbase, qttools, qtx11extras
}:
mkDerivation rec {
pname = "qsynth";
2021-03-09 08:42:24 +00:00
version = "0.9.1";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
2021-03-09 08:42:24 +00:00
sha256 = "sha256-VNcI5QOVacHBcI6psEvhm7+cOTpwr2pMVXmk7nMXNiY=";
};
nativeBuildInputs = [ autoconf pkg-config ];
2017-12-26 03:18:10 +00:00
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
2017-12-26 03:18:10 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "Fluidsynth GUI";
homepage = "https://sourceforge.net/projects/qsynth";
license = licenses.gpl2Plus;
2017-12-26 03:18:10 +00:00
maintainers = with maintainers; [ goibhniu ];
2014-01-19 11:26:35 +00:00
platforms = platforms.linux;
};
}