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

24 lines
689 B
Nix
Raw Normal View History

2017-12-07 12:44:11 +00:00
{ stdenv, fetchurl, alsaLib, fluidsynth, libjack2, qtbase, qttools, qtx11extras, cmake, pkgconfig }:
stdenv.mkDerivation rec {
name = "qsynth-${version}";
2017-12-07 12:44:11 +00:00
version = "0.4.4";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
2017-12-07 12:44:11 +00:00
sha256 = "0qhfnikx3xcllkvs60kj6vcf2rwwzh31y41qkk6kwfhzgd219y8f";
};
2017-12-07 12:44:11 +00:00
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
meta = with stdenv.lib; {
description = "Fluidsynth GUI";
homepage = https://sourceforge.net/projects/qsynth;
license = licenses.gpl2Plus;
2014-01-19 11:26:35 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}