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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
758 B
Nix
Raw Normal View History

2024-03-17 19:20:54 +00:00
{ lib, stdenv, fetchurl, alsa-lib, fluidsynth, libjack2, cmake, pkg-config
, qtbase, qttools, qtx11extras, wrapQtAppsHook
}:
2024-03-17 19:20:54 +00:00
stdenv.mkDerivation rec {
pname = "qsynth";
2024-03-17 19:20:54 +00:00
version = "0.9.13";
src = fetchurl {
url = "mirror://sourceforge/qsynth/${pname}-${version}.tar.gz";
2024-03-17 19:20:54 +00:00
hash = "sha256-SvgZrdS6BwWhNgbovcfhpQKVcu0iwr4dDqeIckuo1fk=";
};
2024-03-17 19:20:54 +00:00
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
2017-12-26 03:18:10 +00:00
buildInputs = [ alsa-lib fluidsynth libjack2 qtbase qttools qtx11extras ];
meta = with lib; {
description = "Fluidsynth GUI";
mainProgram = "qsynth";
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;
};
}