nixpkgs/pkgs/applications/video/pitivi/default.nix

131 lines
2.9 KiB
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, fetchurl
, pkg-config
, intltool
, itstool
, python3
, wrapGAppsHook
, python3Packages
, gst_all_1
, gtk3
, gobject-introspection
, librsvg
, gnome3
, libnotify
, gsound
, meson
, ninja
, gsettings-desktop-schemas
2014-03-22 14:33:35 +00:00
}:
let
# gst-transcoder will eventually be merged with gstreamer (according to
# gst-transcoder 1.8.0 release notes). For now the only user is pitivi so we
# don't bother exposing the package to all of nixpkgs.
gst-transcoder = stdenv.mkDerivation rec {
2018-09-08 15:17:53 +00:00
version = "1.14.1";
pname = "gst-transcoder";
2018-09-08 15:17:53 +00:00
src = fetchFromGitHub {
owner = "pitivi";
repo = "gst-transcoder";
rev = version;
sha256 = "16skiz9akavssii529v9nr8zd54w43livc14khdyzv164djg9q8f";
};
nativeBuildInputs = [
pkg-config
meson
ninja
gobject-introspection
python3
];
buildInputs = with gst_all_1; [
gstreamer
gst-plugins-base
];
};
2018-03-01 04:32:36 +00:00
in python3Packages.buildPythonApplication rec {
pname = "pitivi";
version = "0.999";
format = "other";
2014-03-22 14:33:35 +00:00
src = fetchurl {
url = "mirror://gnome/sources/pitivi/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2018-09-08 15:17:53 +00:00
sha256 = "0mxp2p4gg976fp1vj3rb5rmpl5mqfzncm9vw2719irl32f1qlvyb";
2014-03-22 14:33:35 +00:00
};
2018-03-01 04:32:36 +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
];
nativeBuildInputs = [
meson
ninja
pkg-config
intltool
itstool
python3
wrapGAppsHook
];
2014-03-22 14:33:35 +00:00
buildInputs = [
gobject-introspection
gtk3
librsvg
gnome3.gnome-desktop
gsound
2019-02-13 21:47:50 +00:00
gnome3.adwaita-icon-theme
gsettings-desktop-schemas
libnotify
gst-transcoder
2018-09-08 15:17:53 +00:00
] ++ (with gst_all_1; [
gstreamer
gst-editing-services
gst-plugins-base
(gst-plugins-good.override { gtkSupport = true; })
gst-plugins-bad
gst-plugins-ugly
gst-libav
gst-validate
2014-03-22 14:33:35 +00:00
]);
pythonPath = with python3Packages; [
pygobject3
gst-python
pyxdg
numpy
pycairo
matplotlib
dbus-python
];
postPatch = ''
patchShebangs ./getenvvar.py
'';
2018-03-01 04:32:36 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "pitivi";
versionPolicy = "none"; # we are using dev version, since the stable one is too old
};
};
meta = with stdenv.lib; {
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.
'';
2018-03-01 04:32:36 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [];
platforms = platforms.linux;
};
2014-03-22 14:33:35 +00:00
}