2021-01-11 08:54:33 +01:00
|
|
|
|
{ lib, stdenv
|
2020-09-02 06:29:49 +02:00
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, fetchurl
|
|
|
|
|
, pkg-config
|
2020-09-02 07:23:21 +02:00
|
|
|
|
, gettext
|
2020-09-02 06:29:49 +02:00
|
|
|
|
, itstool
|
|
|
|
|
, python3
|
|
|
|
|
, wrapGAppsHook
|
|
|
|
|
, python3Packages
|
|
|
|
|
, gst_all_1
|
|
|
|
|
, gtk3
|
|
|
|
|
, gobject-introspection
|
2020-10-22 12:25:26 +02:00
|
|
|
|
, libpeas
|
2020-09-02 06:29:49 +02:00
|
|
|
|
, librsvg
|
|
|
|
|
, gnome3
|
|
|
|
|
, libnotify
|
|
|
|
|
, gsound
|
|
|
|
|
, meson
|
|
|
|
|
, ninja
|
|
|
|
|
, gsettings-desktop-schemas
|
2014-03-22 15:33:35 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2020-10-22 12:18:29 +02:00
|
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-09-02 06:29:49 +02:00
|
|
|
|
pname = "pitivi";
|
2020-11-29 09:04:00 +01:00
|
|
|
|
version = "2020.09.2";
|
2020-09-02 06:29:49 +02:00
|
|
|
|
|
|
|
|
|
format = "other";
|
2014-03-22 15:33:35 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 06:42:41 +01:00
|
|
|
|
url = "mirror://gnome/sources/pitivi/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-11-29 09:04:00 +01:00
|
|
|
|
sha256 = "0hzvv4wia4rk0kvq16y27imq2qd4q5lg3vx99hdcjdb1x3zqqfg0";
|
2014-03-22 15:33:35 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-03-01 05:32:36 +01: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-02 06:29:49 +02:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
2020-09-02 07:23:21 +02:00
|
|
|
|
gettext
|
2020-09-02 06:29:49 +02:00
|
|
|
|
itstool
|
|
|
|
|
python3
|
|
|
|
|
wrapGAppsHook
|
|
|
|
|
];
|
2014-03-22 15:33:35 +01:00
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-09-02 06:29:49 +02:00
|
|
|
|
gobject-introspection
|
|
|
|
|
gtk3
|
2020-10-22 12:25:26 +02:00
|
|
|
|
libpeas
|
2020-09-02 06:29:49 +02:00
|
|
|
|
librsvg
|
|
|
|
|
gnome3.gnome-desktop
|
|
|
|
|
gsound
|
2019-02-13 22:47:50 +01:00
|
|
|
|
gnome3.adwaita-icon-theme
|
2020-09-02 06:29:49 +02:00
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
libnotify
|
2018-09-08 17:17:53 +02:00
|
|
|
|
] ++ (with gst_all_1; [
|
2020-09-02 06:29:49 +02:00
|
|
|
|
gstreamer
|
|
|
|
|
gst-editing-services
|
|
|
|
|
gst-plugins-base
|
|
|
|
|
(gst-plugins-good.override { gtkSupport = true; })
|
|
|
|
|
gst-plugins-bad
|
|
|
|
|
gst-plugins-ugly
|
|
|
|
|
gst-libav
|
2020-10-02 00:31:58 +02:00
|
|
|
|
gst-devtools
|
2014-03-22 15:33:35 +01:00
|
|
|
|
]);
|
|
|
|
|
|
2020-09-02 06:29:49 +02:00
|
|
|
|
pythonPath = with python3Packages; [
|
|
|
|
|
pygobject3
|
|
|
|
|
gst-python
|
|
|
|
|
pyxdg
|
|
|
|
|
numpy
|
|
|
|
|
pycairo
|
|
|
|
|
matplotlib
|
|
|
|
|
dbus-python
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
|
patchShebangs ./getenvvar.py
|
|
|
|
|
'';
|
2018-03-01 05:32:36 +01:00
|
|
|
|
|
2020-10-22 17:57:02 +02: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;
|
|
|
|
|
|
2018-03-01 05:32:36 +01:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = "pitivi";
|
|
|
|
|
versionPolicy = "none"; # we are using dev version, since the stable one is too old
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
|
meta = with lib; {
|
2016-07-25 06:05:55 +02:00
|
|
|
|
description = "Non-Linear video editor utilizing the power of GStreamer";
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "http://pitivi.org/";
|
2016-07-25 06:05:55 +02:00
|
|
|
|
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.
|
|
|
|
|
'';
|
2018-03-01 05:32:36 +01:00
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
|
maintainers = with maintainers; [];
|
|
|
|
|
platforms = platforms.linux;
|
2016-07-25 06:05:55 +02:00
|
|
|
|
};
|
2014-03-22 15:33:35 +01:00
|
|
|
|
}
|