1cb074bed0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qsynth/versions.
32 lines
951 B
Nix
32 lines
951 B
Nix
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qtbase, qttools, qtx11extras, cmake, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qsynth-${version}";
|
|
version = "0.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
|
|
sha256 = "1rfkaxq1pyc4hv3l0i6wicianbcbm1wp53kh9i5d4jsljgisd1dv";
|
|
};
|
|
|
|
# cmake is looking for qsynth.desktop.in and fails if it doesn't find it
|
|
# seems like a bug and can presumable go in the next version after 0.5.2
|
|
postPatch = ''
|
|
mv src/qsynth.desktop src/qsynth.desktop.in
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Fluidsynth GUI";
|
|
homepage = https://sourceforge.net/projects/qsynth;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|