3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gstreamer/good/default.nix

52 lines
1.4 KiB
Nix
Raw Normal View History

2013-12-23 15:36:37 +00:00
{ stdenv, fetchurl, pkgconfig, python
, gst-plugins-base, orc, bzip2
, libv4l, libdv, libavc1394, libiec61883
2016-04-24 18:40:20 +01:00
, libvpx, speex, flac, taglib, libshout
2013-12-23 15:36:37 +00:00
, cairo, gdk_pixbuf, aalib, libcaca
, libsoup, libpulseaudio, libintlOrEmpty
2013-12-23 15:36:37 +00:00
}:
2015-04-09 02:53:06 +01:00
let
inherit (stdenv.lib) optionals optionalString;
in
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
name = "gst-plugins-good-1.8.2";
2013-12-23 15:36:37 +00:00
meta = with stdenv.lib; {
description = "Gstreamer Good Plugins";
homepage = "http://gstreamer.freedesktop.org";
longDescription = ''
a set of plug-ins that we consider to have good quality code,
correct functionality, our preferred license (LGPL for the plug-in
code, LGPL or LGPL-compatible for the supporting library).
'';
license = licenses.lgpl2Plus;
2015-04-09 02:53:06 +01:00
platforms = platforms.unix;
2013-12-23 15:36:37 +00:00
};
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
sha256 = "8d7549118a3b7a009ece6bb38a05b66709c551d32d2adfd89eded4d1d7a23944";
2013-12-23 15:36:37 +00:00
};
2016-04-24 13:39:30 +01:00
outputs = [ "dev" "out" ];
2013-12-23 15:36:37 +00:00
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [
gst-plugins-base orc bzip2
2015-04-09 02:53:06 +01:00
libdv libvpx speex flac taglib
2013-12-23 15:36:37 +00:00
cairo gdk_pixbuf aalib libcaca
2016-04-24 18:40:20 +01:00
libsoup libshout
2015-04-09 02:53:06 +01:00
]
++ libintlOrEmpty
++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ];
2015-04-09 02:53:06 +01:00
2016-04-24 13:39:30 +01:00
preFixup = ''
mkdir -p "$dev/lib/gstreamer-1.0"
mv "$out/lib/gstreamer-1.0/"*.la "$dev/lib/gstreamer-1.0"
'';
2015-04-09 02:53:06 +01:00
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
2013-12-23 15:36:37 +00:00
}