{ lib, stdenv , fetchurl , meson , ninja , pkg-config , python3 , bash-completion , gst-plugins-base , gst-plugins-bad , gst-devtools , libxml2 , flex , gettext , gobject-introspection }: stdenv.mkDerivation rec { pname = "gst-editing-services"; version = "1.20.3"; outputs = [ "out" "dev" # "devdoc" # disabled until `hotdoc` is packaged in nixpkgs ]; src = fetchurl { url = "https://gstreamer.freedesktop.org/src/${pname}/${pname}-${version}.tar.xz"; sha256 = "sha256-X9iW3mn74kQh62sP+NL4tMPLo/MCXOrNMCFy85qKuqI="; }; nativeBuildInputs = [ meson ninja pkg-config gettext gobject-introspection python3 flex # documentation # TODO add hotdoc here ]; buildInputs = [ bash-completion libxml2 gobject-introspection gst-devtools python3 ]; propagatedBuildInputs = [ gst-plugins-base gst-plugins-bad ]; mesonFlags = [ "-Ddoc=disabled" # `hotdoc` not packaged in nixpkgs as of writing ]; postPatch = '' patchShebangs \ scripts/extract-release-date-from-doap-file.py ''; meta = with lib; { description = "Library for creation of audio/video non-linear editors"; homepage = "https://gstreamer.freedesktop.org"; license = licenses.lgpl2Plus; platforms = platforms.unix; }; }