pitivi: 0.93 -> 0.94 (close #9894)

This commit is contained in:
宋文武 2015-09-18 20:26:26 +08:00
parent 38812685ed
commit d79463365a

View File

@ -1,16 +1,16 @@
{ stdenv, fetchurl, pkgconfig, intltool, itstool, makeWrapper { stdenv, fetchurl, pkgconfig, intltool, itstool, makeWrapper
, pythonPackages, gst, clutter-gst, clutter-gtk, hicolor_icon_theme , python3Packages, gst, clutter-gtk, hicolor_icon_theme
, gobjectIntrospection, clutter, gtk3, librsvg, gnome3, libnotify , gobjectIntrospection, librsvg, gnome3, libnotify
}: }:
let let
version = "0.93"; version = "0.94";
in stdenv.mkDerivation rec { in stdenv.mkDerivation 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/${version}/${name}.tar.xz";
sha256 = "0z89dwrd7akhkap270i372yszqib8yqcymv78lhdmn3a8bsa7jhp"; sha256 = "1v7s0qsibwykkmknspjhpdrj80s987pvbl01kh34k4aspi1hcapm";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
@ -29,15 +29,15 @@ in stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ]; nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ];
buildInputs = [ buildInputs = [
gobjectIntrospection clutter-gst clutter-gtk librsvg gnome3.gnome_desktop gobjectIntrospection clutter-gtk librsvg gnome3.gnome_desktop
gnome3.defaultIconTheme gnome3.defaultIconTheme
gnome3.gsettings_desktop_schemas libnotify gnome3.gsettings_desktop_schemas libnotify
] ++ (with gst; [ ] ++ (with gst; [
gstreamer gst-python gst-editing-services gstreamer gst-editing-services
gst-plugins-base gst-plugins-good gst-plugins-base gst-plugins-good
gst-plugins-bad gst-plugins-ugly gst-libav gst-plugins-bad gst-plugins-ugly gst-libav
]) ++ (with pythonPackages; [ ]) ++ (with python3Packages; [
python pygobject3 pyxdg numpy pycairo sqlite3 python pygobject3 gst-python pyxdg numpy pycairo sqlite3
]); ]);
preFixup = '' preFixup = ''