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

81 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, itstool, wrapGAppsHook
, python3Packages, gst, gtk3
2015-09-18 12:26:26 +00:00
, gobjectIntrospection, librsvg, gnome3, libnotify
2018-03-01 04:32:36 +00:00
, meson, ninja
2014-03-22 14:33:35 +00:00
}:
let
2018-03-01 04:32:36 +00:00
version = "0.99";
# 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-03-01 04:32:36 +00:00
version = "1.12.2";
name = "gst-transcoder-${version}";
src = fetchurl {
name = "${name}.tar.gz";
2018-03-01 04:32:36 +00:00
url = "https://github.com/pitivi/gst-transcoder/archive/${version}.tar.gz";
sha256 = "0cnwmrsd321s02ff91m3j27ydj7f8wks0jvmp5admlhka6z7zxm9";
};
2018-03-01 04:32:36 +00:00
nativeBuildInputs = [ pkgconfig meson ninja gobjectIntrospection ];
buildInputs = with gst; [ gstreamer gst-plugins-base ];
};
2018-03-01 04:32:36 +00:00
in python3Packages.buildPythonApplication rec {
2014-03-22 14:33:35 +00:00
name = "pitivi-${version}";
src = fetchurl {
2018-03-01 04:32:36 +00:00
url = "mirror://gnome/sources/pitivi/${gnome3.versionBranch version}/${name}.tar.xz";
sha256 = "0z4gvcr0cvyz2by47f36nqf7x2kfv9wn382w9glhs7l0d7b2zl69";
2014-03-22 14:33:35 +00:00
};
2018-03-01 04:32:36 +00:00
format = "other";
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
];
postPatch = ''
patchShebangs ./getenvvar.py
'';
nativeBuildInputs = [ meson ninja pkgconfig intltool itstool wrapGAppsHook ];
2014-03-22 14:33:35 +00:00
buildInputs = [
2018-03-01 04:32:36 +00:00
gobjectIntrospection gtk3 librsvg gnome3.gnome-desktop gnome3.gsound
2015-05-19 12:44:27 +00:00
gnome3.defaultIconTheme
gnome3.gsettings-desktop-schemas libnotify
gst-transcoder
2014-03-22 14:33:35 +00:00
] ++ (with gst; [
2015-09-18 12:26:26 +00:00
gstreamer gst-editing-services
2018-03-01 04:32:36 +00:00
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
]);
2018-03-01 04:32:36 +00:00
pythonPath = with python3Packages; [ pygobject3 gst-python pyxdg numpy pycairo matplotlib dbus-python ];
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";
2018-03-01 04:32:36 +00:00
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
}