mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 14:09:17 +03:00
pitivi: 0.96 → 0.99
This commit is contained in:
parent
a3502ba765
commit
4340a1582f
2 changed files with 63 additions and 21 deletions
|
@ -1,61 +1,80 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, wrapGAppsHook
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, wrapGAppsHook
|
||||||
, python3Packages, gst, gtk3, hicolor-icon-theme
|
, python3Packages, gst, gtk3, hicolor-icon-theme
|
||||||
, gobjectIntrospection, librsvg, gnome3, libnotify
|
, gobjectIntrospection, librsvg, gnome3, libnotify
|
||||||
# for gst-transcoder:
|
, meson, ninja
|
||||||
, which, meson, ninja
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.96";
|
version = "0.99";
|
||||||
|
|
||||||
# gst-transcoder will eventually be merged with gstreamer (according to
|
# 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
|
# 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.
|
# don't bother exposing the package to all of nixpkgs.
|
||||||
gst-transcoder = stdenv.mkDerivation rec {
|
gst-transcoder = stdenv.mkDerivation rec {
|
||||||
name = "gst-transcoder-1.8.0";
|
version = "1.12.2";
|
||||||
|
name = "gst-transcoder-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "${name}.tar.gz";
|
name = "${name}.tar.gz";
|
||||||
url = "https://github.com/pitivi/gst-transcoder/archive/1.8.0.tar.gz";
|
url = "https://github.com/pitivi/gst-transcoder/archive/${version}.tar.gz";
|
||||||
sha256 = "0iggr6idmp7cmfsf6pkhfl3jq1bkga37jl5prbcl1zapkzi26fg6";
|
sha256 = "0cnwmrsd321s02ff91m3j27ydj7f8wks0jvmp5admlhka6z7zxm9";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig meson ninja gobjectIntrospection ];
|
||||||
buildInputs = [ which meson ninja gobjectIntrospection ]
|
buildInputs = with gst; [ gstreamer gst-plugins-base ];
|
||||||
++ (with gst; [ gstreamer gst-plugins-base ]);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in python3Packages.buildPythonApplication rec {
|
||||||
name = "pitivi-${version}";
|
name = "pitivi-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/pitivi/${version}/${name}.tar.xz";
|
url = "mirror://gnome/sources/pitivi/${gnome3.versionBranch version}/${name}.tar.xz";
|
||||||
sha256 = "115d37mvi32yds8gqj2yidkk6pap7szavhjf2hw0388ynydlc2zs";
|
sha256 = "0z4gvcr0cvyz2by47f36nqf7x2kfv9wn382w9glhs7l0d7b2zl69";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool itstool wrapGAppsHook ];
|
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 ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gobjectIntrospection gtk3 librsvg gnome3.gnome-desktop
|
gobjectIntrospection gtk3 librsvg gnome3.gnome-desktop gnome3.gsound
|
||||||
gnome3.defaultIconTheme
|
gnome3.defaultIconTheme
|
||||||
gnome3.gsettings-desktop-schemas libnotify
|
gnome3.gsettings-desktop-schemas libnotify
|
||||||
gst-transcoder
|
gst-transcoder
|
||||||
] ++ (with gst; [
|
] ++ (with gst; [
|
||||||
gstreamer gst-editing-services
|
gstreamer gst-editing-services
|
||||||
gst-plugins-base gst-plugins-good
|
gst-plugins-base (gst-plugins-good.override { gtkSupport = true; })
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-validate
|
gst-plugins-bad gst-plugins-ugly gst-libav gst-validate
|
||||||
]) ++ (with python3Packages; [
|
|
||||||
python pygobject3 gst-python pyxdg numpy pycairo matplotlib
|
|
||||||
dbus-python
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Non-Linear video editor utilizing the power of GStreamer";
|
description = "Non-Linear video editor utilizing the power of GStreamer";
|
||||||
homepage = "http://pitivi.org/";
|
homepage = http://pitivi.org/;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Pitivi is a video editor built upon the GStreamer Editing Services.
|
Pitivi is a video editor built upon the GStreamer Editing Services.
|
||||||
It aims to be an intuitive and flexible application
|
It aims to be an intuitive and flexible application
|
||||||
that can appeal to newbies and professionals alike.
|
that can appeal to newbies and professionals alike.
|
||||||
'';
|
'';
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
--- a/meson.build
|
||||||
|
+++ b/meson.build
|
||||||
|
@@ -26,15 +26,15 @@
|
||||||
|
geteenvvar = find_program('getenvvar.py')
|
||||||
|
cdata = configuration_data()
|
||||||
|
cdata.set('CONFIGURED_PYTHONPATH',
|
||||||
|
- run_command(geteenvvar, 'PYTHONPATH').stdout().strip())
|
||||||
|
+ '')
|
||||||
|
cdata.set('CONFIGURED_GI_TYPELIB_PATH',
|
||||||
|
- run_command(geteenvvar, 'GI_TYPELIB_PATH').stdout().strip())
|
||||||
|
+ '')
|
||||||
|
cdata.set('CONFIGURED_LD_LIBRARY_PATH',
|
||||||
|
- run_command(geteenvvar, 'LD_LIBRARY_PATH').stdout().strip())
|
||||||
|
+ '')
|
||||||
|
cdata.set('CONFIGURED_GST_PLUGIN_PATH',
|
||||||
|
- run_command(geteenvvar, 'GST_PLUGIN_PATH').stdout().strip())
|
||||||
|
+ '')
|
||||||
|
cdata.set('CONFIGURED_GST_PLUGIN_SYSTEM_PATH',
|
||||||
|
- run_command(geteenvvar, 'GST_PLUGIN_SYSTEM_PATH').stdout().strip())
|
||||||
|
+ '')
|
||||||
|
cdata.set('LIBDIR', join_paths(get_option('prefix'), get_option('libdir')))
|
||||||
|
cdata.set('DATADIR', join_paths(get_option('prefix'), get_option('datadir')))
|
||||||
|
cdata.set('PACKAGE_NAME', 'Pitivi')
|
Loading…
Add table
Add a link
Reference in a new issue