biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / audio / projectm / default.nix
blob6ca8d55bb249cd590c4f1070a55218484707f56f
1 { stdenv
2 , mkDerivation
3 , lib
4 , fetchFromGitHub
5 , autoreconfHook
6 , pkg-config
7 , SDL2
8 , qtdeclarative
9 , libpulseaudio
10 , glm
11 , which
14 mkDerivation rec {
15   pname = "projectm";
16   version = "3.1.12";
18   src = fetchFromGitHub {
19     owner = "projectM-visualizer";
20     repo = "projectM";
21     rev = "v${version}";
22     sha256 = "sha256-oEfOx93JyR94II5NkUCvMwqxuV7ktpOHZ8PNMLCiqDw=";
23   };
25   nativeBuildInputs = [
26     pkg-config
27     autoreconfHook
28     which
29   ];
31   buildInputs = [
32     SDL2
33     qtdeclarative
34     libpulseaudio
35     glm
36   ];
38   configureFlags = [
39     "--enable-qt"
40     "--enable-sdl"
41   ];
43   fixupPhase = lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
44     # NOTE: 2019-10-05: Upstream inserts the src path buring build into ELF rpath, so must delete it out
45     # upstream report: https://github.com/projectM-visualizer/projectm/issues/245
46     for entry in $out/bin/* ; do
47       patchelf --set-rpath "$(patchelf --print-rpath $entry | tr ':' '\n' | grep -v 'src/libprojectM' | tr '\n' ':')" "$entry"
48     done
49   '' + ''
50     wrapQtApp $out/bin/projectM-pulseaudio
51     rm $out/bin/projectM-unittest
52   '';
54   meta = {
55     homepage = "https://github.com/projectM-visualizer/projectm";
56     description = "Cross-platform Milkdrop-compatible music visualizer";
57     license = lib.licenses.lgpl21;
58     platforms = lib.platforms.unix;
59     maintainers = with lib.maintainers; [ ];
60     longDescription = ''
61       The open-source project that reimplements the esteemed Winamp Milkdrop by Geiss in a more modern, cross-platform reusable library.
62       Read an audio input and produces mesmerizing visuals, detecting tempo, and rendering advanced equations into a limitless array of user-contributed visualizations.
63     '';
64   };