mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
740 B
Nix
28 lines
740 B
Nix
{ lib, fetchurl, alsa-lib, fluidsynth, libjack2, autoconf, pkg-config
|
|
, mkDerivation, qtbase, qttools, qtx11extras
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "qsynth";
|
|
version = "0.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-dlgIkMde7uv4UlMKEPhtZ7MfSTBc7RvHs+Q2yk+G/JM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf pkg-config ];
|
|
|
|
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Fluidsynth GUI";
|
|
homepage = "https://sourceforge.net/projects/qsynth";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|