lol

Merge pull request #245102 from SuperSandro2000/phonon-gstreamer

authored by

Sandro and committed by
GitHub
fa6624af fb80f9e5

+18 -19
+18 -19
pkgs/development/libraries/phonon/backends/gstreamer.nix
··· 7 7 pname = "phonon-backend-gstreamer"; 8 8 version = "4.10.0"; 9 9 10 - meta = with lib; { 11 - homepage = "https://phonon.kde.org/"; 12 - description = "GStreamer backend for Phonon"; 13 - platforms = platforms.linux; 14 - maintainers = with maintainers; [ ttuegel ]; 15 - license = licenses.lgpl21; 16 - }; 17 - 18 10 src = fetchurl { 19 11 url = "mirror://kde/stable/phonon/${pname}/${version}/${pname}-${version}.tar.xz"; 20 12 sha256 = "1wk1ip2w7fkh65zk6rilj314dna0hgsv2xhjmpr5w08xa8sii1y5"; ··· 34 26 35 27 dontWrapQtApps = true; 36 28 37 - env.NIX_CFLAGS_COMPILE = 38 - let gstPluginPaths = 39 - lib.makeSearchPathOutput "lib" "/lib/gstreamer-1.0" 40 - (with gst_all_1; [ 41 - gstreamer 42 - gst-plugins-base 43 - gst-plugins-good 44 - gst-plugins-ugly 45 - gst-plugins-bad 46 - gst-libav 47 - ]); 29 + env.NIX_CFLAGS_COMPILE = let 30 + gstPluginPaths = lib.makeSearchPathOutput "lib" "/lib/gstreamer-1.0" 31 + (with gst_all_1; [ 32 + gstreamer 33 + gst-plugins-base 34 + gst-plugins-good 35 + gst-plugins-ugly 36 + gst-plugins-bad 37 + gst-libav 38 + ]); 48 39 in toString [ 49 40 # This flag should be picked up through pkg-config, but it isn't. 50 41 "-I${gst_all_1.gstreamer.dev}/lib/gstreamer-1.0/include" ··· 70 61 cmakeFlags = [ 71 62 "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" 72 63 ]; 64 + 65 + meta = with lib; { 66 + homepage = "https://phonon.kde.org/"; 67 + description = "GStreamer backend for Phonon"; 68 + platforms = platforms.linux; 69 + maintainers = with maintainers; [ ttuegel ]; 70 + license = licenses.lgpl21; 71 + }; 73 72 }