summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/ugly/default.nix
diff options
context:
space:
mode:
authorVäinö Järvelä <vaino.jarvela@reaktor.com>2018-02-23 21:15:47 +0200
committerVäinö Järvelä <vaino.jarvela@reaktor.com>2018-02-24 07:50:51 +0200
commit381cb8b5ad5a66e06a96eb0c2854293e5756a9ee (patch)
treef73d4bccdaf78b23bda76db9bbf54adb8545576e /pkgs/development/libraries/gstreamer/ugly/default.nix
parent74d6d40bdf3c73a2fba7bef5453a16058c719e43 (diff)
downloadnixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar.gz
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar.bz2
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar.lz
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar.xz
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.tar.zst
nixpkgs-381cb8b5ad5a66e06a96eb0c2854293e5756a9ee.zip
gst-plugins-ugly: Add mpg123 to enable mpg123audiodec in gstreamer
Adds support for MP3 playback.
Diffstat (limited to 'pkgs/development/libraries/gstreamer/ugly/default.nix')
-rw-r--r--pkgs/development/libraries/gstreamer/ugly/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix
index 3aa8eb886d7..cdaa88ce350 100644
--- a/pkgs/development/libraries/gstreamer/ugly/default.nix
+++ b/pkgs/development/libraries/gstreamer/ugly/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig, python
 , gst-plugins-base, orc
 , a52dec, libcdio, libdvdread
-, lame, libmad, libmpeg2, x264, libintlOrEmpty
+, lame, libmad, libmpeg2, x264, libintlOrEmpty, mpg123
 }:
 
 stdenv.mkDerivation rec {
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     gst-plugins-base orc
     a52dec libcdio libdvdread
-    lame libmad libmpeg2 x264
+    lame libmad libmpeg2 x264 mpg123
   ] ++ libintlOrEmpty;
 
   NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;