about summary refs log tree commit diff
path: root/pkgs/development/libraries/phonon/backends/vlc.nix
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-08-11 16:22:42 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-08-11 16:22:42 +0200
commit4e7e464ae8e897d487fc412b50560f9f5f744353 (patch)
tree606f3898906c89a001671f51e6c0315d73e79277 /pkgs/development/libraries/phonon/backends/vlc.nix
parent610ef47b2030813fcc9017eeda5bfd7621851bc3 (diff)
parent59287a7ba19cafec0301f77acf16ee28b4f5fd84 (diff)
downloadnixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar.gz
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar.bz2
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar.lz
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar.xz
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.tar.zst
nixlib-4e7e464ae8e897d487fc412b50560f9f5f744353.zip
Merge branch 'master' into staging-next
; Conflicts:
;	pkgs/tools/system/sg3_utils/default.nix
Diffstat (limited to 'pkgs/development/libraries/phonon/backends/vlc.nix')
-rw-r--r--pkgs/development/libraries/phonon/backends/vlc.nix20
1 files changed, 9 insertions, 11 deletions
diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix
index b874c2e1d01d..8ff0f3bb4917 100644
--- a/pkgs/development/libraries/phonon/backends/vlc.nix
+++ b/pkgs/development/libraries/phonon/backends/vlc.nix
@@ -3,22 +3,13 @@
 , debug ? false
 }:
 
-with lib;
-
 stdenv.mkDerivation rec {
   pname = "phonon-backend-vlc";
-  version = "0.11.1";
-
-  meta = with lib; {
-    homepage = "https://phonon.kde.org/";
-    description = "GStreamer backend for Phonon";
-    platforms = platforms.linux;
-    license = with licenses; [ bsd3 lgpl2Plus ];
-  };
+  version = "0.11.2";
 
   src = fetchurl {
     url = "mirror://kde/stable/phonon/${pname}/${version}/${pname}-${version}.tar.xz";
-    sha256 = "1vp52i5996khpxs233an7mlrzdji50gcs58ig8nrwfwlgyb1xnfc";
+    sha256 = "sha256-xsM7/GjRN/DlegKeS3mMu5D1Svb3Ma9JZ3hXeRzNU6U=";
   };
 
   buildInputs = [
@@ -40,4 +31,11 @@ stdenv.mkDerivation rec {
   cmakeFlags = [
     "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}"
   ];
+
+  meta = with lib; {
+    homepage = "https://phonon.kde.org/";
+    description = "GStreamer backend for Phonon";
+    platforms = platforms.linux;
+    license = with licenses; [ bsd3 lgpl2Plus ];
+  };
 }