2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
2021-02-05 17:12:51 +00:00
|
|
|
, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
, python3
|
2020-11-12 09:05:59 +00:00
|
|
|
, bash-completion
|
2020-04-24 23:36:52 +00:00
|
|
|
, gst-plugins-base
|
2020-11-12 09:05:59 +00:00
|
|
|
, gst-plugins-bad
|
|
|
|
, gst-devtools
|
2020-04-24 23:36:52 +00:00
|
|
|
, libxml2
|
|
|
|
, flex
|
|
|
|
, gettext
|
|
|
|
, gobject-introspection
|
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 {
|
2020-11-12 09:05:59 +00:00
|
|
|
pname = "gst-editing-services";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "1.22.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-12 09:05:59 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"dev"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-09 03:18:52 +00:00
|
|
|
url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-RThGz6RxoMHIAUVRvUhPvPM08ORDBZIxevuyN3Xmm9I=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
2021-02-05 17:12:51 +00:00
|
|
|
pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
python3
|
|
|
|
flex
|
2023-04-29 16:46:19 +00:00
|
|
|
] ++ lib.optionals enableDocumentation [
|
|
|
|
hotdoc
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-11-12 09:05:59 +00:00
|
|
|
bash-completion
|
2020-04-24 23:36:52 +00:00
|
|
|
libxml2
|
2022-08-12 12:06:08 +00:00
|
|
|
gobject-introspection
|
2023-04-29 16:46:19 +00:00
|
|
|
gst-devtools
|
|
|
|
python3
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
gst-plugins-base
|
2020-11-12 09:05:59 +00:00
|
|
|
gst-plugins-bad
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
2023-04-29 16:46:19 +00:00
|
|
|
(lib.mesonEnable "doc" enableDocumentation)
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2020-11-12 09:05:59 +00:00
|
|
|
patchShebangs \
|
|
|
|
scripts/extract-release-date-from-doap-file.py
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Library for creation of audio/video non-linear editors";
|
|
|
|
homepage = "https://gstreamer.freedesktop.org";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ lilyinstarlight ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|