tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gst-plugins-good: add icecast support
Spencer Whitt
10 years ago
d6def262
95d62e78
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gstreamer
legacy
gst-plugins-good
default.nix
+2
-2
pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix
···
1
1
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo
2
2
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx
3
3
, libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc
4
4
-
, glib, gstreamer, bzip2, libsoup, libintlOrEmpty
4
4
+
, glib, gstreamer, bzip2, libsoup, libshout, libintlOrEmpty
5
5
, # Whether to build no plugins that have external dependencies
6
6
# (except the PulseAudio plugin).
7
7
minimalDeps ? false
···
28
28
++ libintlOrEmpty
29
29
++ stdenv.lib.optionals (!minimalDeps)
30
30
[ aalib libcaca cairo libdv flac libjpeg libpng speex
31
31
-
taglib bzip2 libvpx gdk_pixbuf orc libsoup ];
31
31
+
taglib bzip2 libvpx gdk_pixbuf orc libsoup libshout ];
32
32
33
33
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
34
34