anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / audio / qmmp / default.nix
blobaf7abcef17db945f39050b16afb9d2ed31b8e519
1 { lib, stdenv, fetchurl, cmake, pkg-config
2 , qtbase, qttools, qtmultimedia, wrapQtAppsHook
3 # transports
4 , curl, libmms
5 # input plugins
6 , libmad, taglib, libvorbis, libogg, flac, libmpcdec, libmodplug, libsndfile
7 , libcdio, cdparanoia, libcddb, faad2, ffmpeg, wildmidi, libbs2b, game-music-emu
8 , libarchive, opusfile, soxr, wavpack
9 # output plugins
10 , alsa-lib, libpulseaudio, pipewire, libjack2
11 # effect plugins
12 , libsamplerate
15 # Additional plugins that can be added:
16 #  ProjectM visualization plugin
18 # To make MIDI work we must tell Qmmp what instrument configuration to use (and
19 # this can unfortunately not be set at configure time):
20 # Go to settings (ctrl-p), navigate to the WildMidi plugin and click on
21 # Preferences. In the instrument configuration field, type the path to
22 # /nix/store/*wildmidi*/etc/wildmidi.cfg (or your own custom cfg file).
24 # Qmmp installs working .desktop file(s) all by itself, so we don't need to
25 # handle that.
27 stdenv.mkDerivation rec {
28   pname = "qmmp";
29   version = "2.1.8";
31   src = fetchurl {
32     url = "https://qmmp.ylsoftware.com/files/qmmp/2.1/${pname}-${version}.tar.bz2";
33     hash = "sha256-hGphQ8epqym47C9doiSOQd3yc28XwV2UsNc7ivhaae4=";
34   };
36   nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
38   buildInputs =
39     [ # basic requirements
40       qtbase qttools qtmultimedia
41       # transports
42       curl libmms
43       # input plugins
44       libmad taglib libvorbis libogg flac libmpcdec libmodplug libsndfile
45       libcdio cdparanoia libcddb faad2 ffmpeg wildmidi libbs2b game-music-emu
46       libarchive opusfile soxr wavpack
47       # output plugins
48       alsa-lib libpulseaudio pipewire libjack2
49       # effect plugins
50       libsamplerate
51     ];
53   meta = with lib; {
54     description = "Qt-based audio player that looks like Winamp";
55     mainProgram = "qmmp";
56     homepage = "https://qmmp.ylsoftware.com/";
57     license = licenses.gpl2Plus;
58     platforms = platforms.linux;
59     maintainers = [ maintainers.bjornfor ];
60   };