Merge branch 'master.upstream' into staging.upstream

This commit is contained in:
William A. Kennington III
2015-08-05 16:24:57 -07:00
68 changed files with 1942 additions and 1078 deletions

View File

@@ -0,0 +1,30 @@
{ stdenv, intltool, fetchurl, wrapGAppsHook, gnome-video-effects, libcanberra_gtk3
, pkgconfig, gtk3, glib, clutter_gtk, clutter-gst_2, udev, gst_all_1, itstool
, adwaita-icon-theme, librsvg, gdk_pixbuf, gnome3, gnome_desktop, libxml2, libtool }:
stdenv.mkDerivation rec {
name = "cheese-${gnome3.version}.1";
src = fetchurl {
url = "mirror://gnome/sources/cheese/${gnome3.version}/${name}.tar.xz";
sha256 = "184hzwrjjn94ndivb54rrif4jnbr66p1j0nlqqi3nw6qsrm2yqj4";
};
buildInputs = [ pkgconfig gtk3 glib intltool wrapGAppsHook gnome-video-effects itstool
gdk_pixbuf adwaita-icon-theme librsvg udev gst_all_1.gstreamer libxml2
gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gnome_desktop
gst_all_1.gst-plugins-bad clutter_gtk clutter-gst_2
libtool libcanberra_gtk3 ];
enableParallelBuilding = true;
NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Cheese;
description = "Take photos and videos with your webcam, with fun graphical effects";
maintainers = gnome3.maintainers;
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View File

@@ -21,7 +21,9 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig python libxml2Python libxslt which libX11
xkeyboard_config isocodes itstool wayland
gtk3 glib intltool gnome_doc_utils libxkbfile
gnome3.gsettings_desktop_schemas gobjectIntrospection ];
gobjectIntrospection ];
propagatedBuildInputs = [ gnome3.gsettings_desktop_schemas ];
meta = with stdenv.lib; {
platforms = platforms.linux;

View File

@@ -44,6 +44,7 @@ let
gnome3 = self // { recurseForDerivations = false; };
clutter = pkgs.clutter_1_22;
clutter_gtk = pkgs.clutter_gtk_1_6.override { inherit clutter gtk3; };
clutter-gst_2 = pkgs.clutter-gst;
clutter-gst = pkgs.clutter-gst_3_0.override { inherit clutter; };
cogl = pkgs.cogl_1_20;
gtk = gtk3;
@@ -246,6 +247,8 @@ let
webkitgtk = webkitgtk24x;
};
cheese = callPackage ./apps/cheese { };
evolution = callPackage ./apps/evolution {
webkitgtk = webkitgtk24x;
};
@@ -330,6 +333,8 @@ let
pomodoro = callPackage ./misc/pomodoro { };
gnome-video-effects = callPackage ./misc/gnome-video-effects { };
};
in self; # pkgsFun

View File

@@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }:
stdenv.mkDerivation rec {
name = "gnome-video-effects-${version}";
version = "0.4.1";
src = fetchurl {
url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz";
sha256 = "0jl4iny2dqpcgi3sgxzpgnbw0752i8ay3rscp2cgdjlp79ql5gil";
};
buildInputs = [ pkgconfig intltool ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
platforms = platforms.linux;
maintainers = gnome3.maintainers;
license = licenses.gpl2;
};
}