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

54 lines
1.5 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 17:40:20 +00:00
, libvpx, speex, flac, taglib, libshout
2013-12-23 15:36:37 +00:00
, cairo, gdk_pixbuf, aalib, libcaca
, libsoup, libpulseaudio, libintlOrEmpty
2017-07-13 17:40:21 +00:00
, darwin
2013-12-23 15:36:37 +00:00
}:
2015-04-09 01:53:06 +00:00
let
inherit (stdenv.lib) optionals optionalString;
in
2013-12-23 15:36:37 +00:00
stdenv.mkDerivation rec {
2018-03-30 19:09:57 +00:00
name = "gst-plugins-good-1.14.0";
2013-12-23 15:36:37 +00:00
meta = with stdenv.lib; {
description = "Gstreamer Good Plugins";
2017-09-16 19:28:31 +00:00
homepage = "https://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;
2017-04-21 05:18:47 +00:00
platforms = platforms.linux ++ platforms.darwin;
2013-12-23 15:36:37 +00:00
};
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.xz";
2018-03-30 19:09:57 +00:00
sha256 = "1226s30cf7pqg3fj8shd20l7sp93yw9sqplgxns3m3ajgms3byka";
2013-12-23 15:36:37 +00:00
};
outputs = [ "out" "dev" ];
2016-04-24 12:39:30 +00:00
2013-12-23 15:36:37 +00:00
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [
gst-plugins-base orc bzip2
2015-04-09 01:53:06 +00:00
libdv libvpx speex flac taglib
2013-12-23 15:36:37 +00:00
cairo gdk_pixbuf aalib libcaca
2016-04-24 17:40:20 +00:00
libsoup libshout
2015-04-09 01:53:06 +00:00
]
++ libintlOrEmpty
2017-07-13 17:40:21 +00:00
++ optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ]
++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ];
2015-04-09 01:53:06 +00:00
2016-04-24 12:39:30 +00:00
preFixup = ''
mkdir -p "$dev/lib/gstreamer-1.0"
mv "$out/lib/gstreamer-1.0/"*.la "$dev/lib/gstreamer-1.0"
'';
2015-04-09 01:53:06 +00:00
LDFLAGS = optionalString stdenv.isDarwin "-lintl";
2013-12-23 15:36:37 +00:00
}