2020-04-24 23:36:52 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-02-05 17:12:51 +00:00
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
, python3
|
|
|
|
, gst-plugins-base
|
|
|
|
, orc
|
|
|
|
, gettext
|
|
|
|
, a52dec
|
|
|
|
, libcdio
|
|
|
|
, libdvdread
|
|
|
|
, libmad
|
|
|
|
, libmpeg2
|
|
|
|
, x264
|
|
|
|
, libintl
|
|
|
|
, lib
|
|
|
|
, opencore-amr
|
2021-03-09 03:18:52 +00:00
|
|
|
, IOKit
|
|
|
|
, CoreFoundation
|
|
|
|
, DiskArbitration
|
2022-02-10 20:34:41 +00:00
|
|
|
, enableGplPlugins ? true
|
2023-04-29 16:46:19 +00:00
|
|
|
# Checks meson.is_cross_build(), so even canExecute isn't enough.
|
|
|
|
, enableDocumentation ? stdenv.hostPlatform == stdenv.buildPlatform, hotdoc
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gst-plugins-ugly";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "1.22.9";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-09 03:18:52 +00:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-C/aF1mAVoB3T/BZxtkocissyHdnUq54Fopqxl4KqYjY=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
gettext
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
python3
|
2023-04-29 16:46:19 +00:00
|
|
|
] ++ lib.optionals enableDocumentation [
|
|
|
|
hotdoc
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gst-plugins-base
|
|
|
|
orc
|
2022-02-10 20:34:41 +00:00
|
|
|
libintl
|
|
|
|
opencore-amr
|
|
|
|
] ++ lib.optionals enableGplPlugins [
|
2020-04-24 23:36:52 +00:00
|
|
|
a52dec
|
|
|
|
libcdio
|
|
|
|
libdvdread
|
|
|
|
libmad
|
|
|
|
libmpeg2
|
|
|
|
x264
|
2021-03-09 03:18:52 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2020-04-24 23:36:52 +00:00
|
|
|
IOKit
|
|
|
|
CoreFoundation
|
|
|
|
DiskArbitration
|
2021-03-09 03:18:52 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dsidplay=disabled" # sidplay / sidplay/player.h isn't packaged in nixpkgs as of writing
|
2023-04-29 16:46:19 +00:00
|
|
|
(lib.mesonEnable "doc" enableDocumentation)
|
2022-02-10 20:34:41 +00:00
|
|
|
] ++ (if enableGplPlugins then [
|
|
|
|
"-Dgpl=enabled"
|
|
|
|
] else [
|
|
|
|
"-Da52dec=disabled"
|
|
|
|
"-Dcdio=disabled"
|
|
|
|
"-Ddvdread=disabled"
|
|
|
|
"-Dmpeg2dec=disabled"
|
|
|
|
"-Dsidplay=disabled"
|
|
|
|
"-Dx264=disabled"
|
|
|
|
]);
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-12 09:05:59 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs \
|
|
|
|
scripts/extract-release-date-from-doap-file.py
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Gstreamer Ugly Plugins";
|
|
|
|
homepage = "https://gstreamer.freedesktop.org";
|
|
|
|
longDescription = ''
|
|
|
|
a set of plug-ins that have good quality and correct functionality,
|
|
|
|
but distributing them might pose problems. The license on either
|
|
|
|
the plug-ins or the supporting libraries might not be how we'd
|
|
|
|
like. The code might be widely known to present patent problems.
|
|
|
|
'';
|
2022-02-10 20:34:41 +00:00
|
|
|
license = if enableGplPlugins then licenses.gpl2Plus else licenses.lgpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.unix;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ matthewbauer lilyinstarlight ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|