forked from mirrors/nixpkgs
pitivi: cleanup and fix icons on non-nixos
This commit is contained in:
parent
12e60724ff
commit
4a1c3760e0
|
@ -1,7 +1,6 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool, itstool, makeWrapper
|
||||
, pythonPackages, gst, clutter-gst, clutter-gtk
|
||||
, gobjectIntrospection, clutter, gtk3, librsvg
|
||||
, gnome_icon_theme, gnome_icon_theme_symbolic, gnome3
|
||||
, pythonPackages, gst, clutter-gst, clutter-gtk, hicolor_icon_theme
|
||||
, gobjectIntrospection, clutter, gtk3, librsvg, gnome3, libnotify
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -30,27 +29,22 @@ in stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ];
|
||||
|
||||
buildInputs = [
|
||||
gobjectIntrospection clutter-gst clutter-gtk librsvg
|
||||
gobjectIntrospection clutter-gst clutter-gtk librsvg gnome3.gnome_desktop
|
||||
hicolor_icon_theme gnome3.gnome_icon_theme gnome3.gnome_icon_theme_symbolic
|
||||
gnome3.gsettings_desktop_schemas libnotify
|
||||
] ++ (with gst; [
|
||||
gst-python gst-editing-services
|
||||
gstreamer gst-python gst-editing-services
|
||||
gst-plugins-base gst-plugins-good
|
||||
gst-plugins-bad gst-plugins-ugly gst-libav
|
||||
]) ++ (with pythonPackages; [
|
||||
python pygobject3 pyxdg numpy pycairo sqlite3
|
||||
]);
|
||||
|
||||
preFixup = with stdenv.lib; with gst; let
|
||||
libraryPath = makeLibraryPath [
|
||||
gstreamer gst-editing-services
|
||||
clutter-gst clutter-gtk clutter gtk3
|
||||
gnome3.gnome_desktop
|
||||
];
|
||||
in ''
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/pitivi" \
|
||||
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
||||
--prefix LD_LIBRARY_PATH : "${libraryPath}" \
|
||||
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
|
||||
--prefix XDG_DATA_DIRS : "\$XDG_ICON_DIRS:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
||||
rm $out/share/icons/hicolor/icon-theme.cache
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -2293,7 +2293,6 @@ let
|
|||
pitivi = callPackage ../applications/video/pitivi {
|
||||
gst = gst_all_1;
|
||||
clutter-gtk = clutter_gtk;
|
||||
inherit (gnome3) gnome_icon_theme gnome_icon_theme_symbolic;
|
||||
};
|
||||
|
||||
p0f = callPackage ../tools/security/p0f { };
|
||||
|
|
Loading…
Reference in a new issue