gst-plugins-base: align attrname with pkgname
This commit is contained in:
committed by
Robin Gloster
parent
c49533a494
commit
3d104ab2b3
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gst_plugins_base, gstreamer }:
|
||||
{ stdenv, fetchurl, pkgconfig, gst-plugins-base, gstreamer }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnonlin-0.10.17";
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0dc9kvr6i7sh91cyhzlbx2bchwg84rfa4679ccppzjf0y65dv8p4";
|
||||
};
|
||||
|
||||
buildInputs = [ gst_plugins_base gstreamer pkgconfig ];
|
||||
buildInputs = [ gst-plugins-base gstreamer pkgconfig ];
|
||||
|
||||
meta = {
|
||||
homepage = "http://gstreamer.freedesktop.org/modules/gnonlin.html";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, bzip2, yasm, orc
|
||||
{ fetchurl, stdenv, pkgconfig, gst-plugins-base, bzip2, yasm, orc
|
||||
, useInternalFfmpeg ? false, ffmpeg ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = stdenv.lib.optionalString (!useInternalFfmpeg) "--with-system-ffmpeg";
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig bzip2 gst_plugins_base orc ]
|
||||
[ pkgconfig bzip2 gst-plugins-base orc ]
|
||||
++ (if useInternalFfmpeg then [ yasm ] else [ ffmpeg ]);
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base
|
||||
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst-plugins-base
|
||||
, libdvdnav, libdvdread, orc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig glib gstreamer gst_plugins_base libdvdnav libdvdread orc ];
|
||||
[ pkgconfig glib gstreamer gst-plugins-base libdvdnav libdvdread orc ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, lib, pkgconfig, gst_plugins_base, aalib, cairo
|
||||
{ fetchurl, stdenv, lib, pkgconfig, gst-plugins-base, aalib, cairo
|
||||
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx
|
||||
, libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc
|
||||
, glib, gstreamer, bzip2, libsoup, libshout, ncurses, libintlOrEmpty
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = [ "--enable-experimental" "--disable-oss" ];
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig glib gstreamer gst_plugins_base ]
|
||||
[ pkgconfig glib gstreamer gst-plugins-base ]
|
||||
++ lib.optional stdenv.isLinux libpulseaudio
|
||||
++ libintlOrEmpty
|
||||
++ lib.optionals (!minimalDeps)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst_plugins_base
|
||||
{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gst-plugins-base
|
||||
, libmad, libdvdread, libmpeg2, libcdio, a52dec, x264, orc, lame, libintlOrEmpty }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig glib gstreamer gst_plugins_base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty;
|
||||
[ pkgconfig glib gstreamer gst-plugins-base libmad libdvdread a52dec x264 orc lame ] ++ libintlOrEmpty;
|
||||
|
||||
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, stdenv, pkgconfig, python2Packages, gstreamer, gst_plugins_base
|
||||
{ fetchurl, stdenv, pkgconfig, python2Packages, gstreamer, gst-plugins-base
|
||||
}:
|
||||
|
||||
let
|
||||
@@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
|
||||
patches = [ ./disable-testFake.patch ];
|
||||
|
||||
buildInputs =
|
||||
[ pkgconfig gst_plugins_base pygobject2 ]
|
||||
[ pkgconfig gst-plugins-base pygobject2 ]
|
||||
;
|
||||
|
||||
propagatedBuildInputs = [ gstreamer python ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, glibmm, gstreamer, gst_plugins_base, libsigcxx, libxmlxx, pkgconfig }:
|
||||
{ stdenv, fetchurl, glibmm, gstreamer, gst-plugins-base, libsigcxx, libxmlxx, pkgconfig }:
|
||||
|
||||
let
|
||||
ver_maj = "0.10";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
doCheck = false; # Tests require pulseaudio in /homeless-shelter
|
||||
|
||||
propagatedBuildInputs = [
|
||||
glibmm gstreamer gst_plugins_base libsigcxx libxmlxx
|
||||
glibmm gstreamer gst-plugins-base libsigcxx libxmlxx
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, gstreamer, gst_plugins_base, boost, glib, qt4, cmake
|
||||
{ stdenv, fetchurl, gstreamer, gst-plugins-base, boost, glib, qt4, cmake
|
||||
, automoc4, flex, bison, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1pqg9sxzk8sdrf7pazb5v21hasqai9i4l203gbdqz29w2ll1ybsl";
|
||||
};
|
||||
|
||||
buildInputs = [ gstreamer gst_plugins_base glib qt4 ];
|
||||
buildInputs = [ gstreamer gst-plugins-base glib qt4 ];
|
||||
propagatedBuildInputs = [ boost ];
|
||||
nativeBuildInputs = [ cmake automoc4 flex bison pkgconfig ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user