nixpkgs/pkgs/development/libraries/gstreamer/good/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2013-12-23 16:36:37 +01:00
{ stdenv, fetchurl, pkgconfig, python
, gst-plugins-base, orc, bzip2
, libv4l, libdv, libavc1394, libiec61883
2016-04-24 19:40:20 +02:00
, libvpx, speex, flac, taglib, libshout
2013-12-23 16:36:37 +01:00
, cairo, gdk_pixbuf, aalib, libcaca
, libsoup, libpulseaudio, libintlOrEmpty
2013-12-23 16:36:37 +01:00
}:
2015-04-09 03:53:06 +02:00
let
inherit (stdenv.lib) optionals optionalString;
in
2013-12-23 16:36:37 +01:00
stdenv.mkDerivation rec {
2016-04-24 19:40:20 +02:00
name = "gst-plugins-good-1.8.0";
2013-12-23 16:36:37 +01: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 03:53:06 +02:00
platforms = platforms.unix;
2013-12-23 16:36:37 +01:00
};
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
2016-04-24 19:40:20 +02:00
sha256 = "0kczdvqxvl8kxiy2d7czv16jp73hv9k3nykh47ckihnv8x6i6362";
2013-12-23 16:36:37 +01:00
};
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [
gst-plugins-base orc bzip2
2015-04-09 03:53:06 +02:00
libdv libvpx speex flac taglib
2013-12-23 16:36:37 +01:00
cairo gdk_pixbuf aalib libcaca
2016-04-24 19:40:20 +02:00
libsoup libshout
2015-04-09 03:53:06 +02:00
]
++ libintlOrEmpty
++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ];
2015-04-09 03:53:06 +02:00
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
2013-12-23 16:36:37 +01:00
}