2021-02-05 17:12:51 +00:00
|
|
|
|
{ lib
|
2020-09-25 04:45:31 +00:00
|
|
|
|
, fetchurl
|
|
|
|
|
, pkg-config
|
|
|
|
|
, gettext
|
|
|
|
|
, itstool
|
|
|
|
|
, python3
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, python3Packages
|
|
|
|
|
, gst_all_1
|
|
|
|
|
, gtk3
|
|
|
|
|
, gobject-introspection
|
2020-11-12 09:05:59 +00:00
|
|
|
|
, libpeas
|
2020-09-25 04:45:31 +00:00
|
|
|
|
, librsvg
|
2021-05-20 23:08:51 +00:00
|
|
|
|
, gnome
|
2022-03-30 09:31:56 +00:00
|
|
|
|
, gnome-desktop
|
2020-09-25 04:45:31 +00:00
|
|
|
|
, libnotify
|
|
|
|
|
, gsound
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, gsettings-desktop-schemas
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2020-11-12 09:05:59 +00:00
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-09-25 04:45:31 +00:00
|
|
|
|
pname = "pitivi";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
version = "2021.05";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
|
|
format = "other";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-20 23:08:51 +00:00
|
|
|
|
url = "mirror://gnome/sources/pitivi/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
sha256 = "z1aTxGxCqw2hSi5Zv89LyIBgS0HpzTqo0uvcYIJ7dcc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# By default, the build picks up environment variables like PYTHONPATH
|
|
|
|
|
# and saves them to the generated binary. This would make the build-time
|
|
|
|
|
# dependencies part of the closure so we remove it.
|
|
|
|
|
./prevent-closure-contamination.patch
|
2020-09-25 04:45:31 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
gettext
|
|
|
|
|
itstool
|
|
|
|
|
python3
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-09-25 04:45:31 +00:00
|
|
|
|
gobject-introspection
|
|
|
|
|
gtk3
|
2020-11-12 09:05:59 +00:00
|
|
|
|
libpeas
|
2020-09-25 04:45:31 +00:00
|
|
|
|
librsvg
|
2022-03-30 09:31:56 +00:00
|
|
|
|
gnome-desktop
|
2020-09-25 04:45:31 +00:00
|
|
|
|
gsound
|
2021-05-20 23:08:51 +00:00
|
|
|
|
gnome.adwaita-icon-theme
|
2020-09-25 04:45:31 +00:00
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
libnotify
|
2020-04-24 23:36:52 +00:00
|
|
|
|
] ++ (with gst_all_1; [
|
2020-09-25 04:45:31 +00:00
|
|
|
|
gstreamer
|
|
|
|
|
gst-editing-services
|
|
|
|
|
gst-plugins-base
|
|
|
|
|
(gst-plugins-good.override { gtkSupport = true; })
|
|
|
|
|
gst-plugins-bad
|
|
|
|
|
gst-plugins-ugly
|
|
|
|
|
gst-libav
|
2020-11-12 09:05:59 +00:00
|
|
|
|
gst-devtools
|
2020-04-24 23:36:52 +00:00
|
|
|
|
]);
|
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
|
pythonPath = with python3Packages; [
|
|
|
|
|
pygobject3
|
|
|
|
|
gst-python
|
|
|
|
|
pyxdg
|
|
|
|
|
numpy
|
|
|
|
|
pycairo
|
|
|
|
|
matplotlib
|
|
|
|
|
dbus-python
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs ./getenvvar.py
|
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2020-10-27 00:29:36 +00:00
|
|
|
|
# Fixes error
|
|
|
|
|
# Couldn’t recognize the image file format for file ".../share/pitivi/pixmaps/asset-proxied.svg"
|
|
|
|
|
# at startup, see https://github.com/NixOS/nixpkgs/issues/56943
|
|
|
|
|
# and https://github.com/NixOS/nixpkgs/issues/89691#issuecomment-714398705.
|
|
|
|
|
strictDeps = false;
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
passthru = {
|
2021-05-20 23:08:51 +00:00
|
|
|
|
updateScript = gnome.updateScript {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
packageName = "pitivi";
|
|
|
|
|
versionPolicy = "none"; # we are using dev version, since the stable one is too old
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Non-Linear video editor utilizing the power of GStreamer";
|
|
|
|
|
homepage = "http://pitivi.org/";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Pitivi is a video editor built upon the GStreamer Editing Services.
|
|
|
|
|
It aims to be an intuitive and flexible application
|
|
|
|
|
that can appeal to newbies and professionals alike.
|
|
|
|
|
'';
|
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
|
maintainers = with maintainers; [];
|
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|