Merge pull request #172912 from armeenm/bump-byzanz

byzanz: 0.2.3.alpha -> unstable-2016-03-12

authored by Thiago Kenji Okada and committed by GitHub acdec6d2 aa3b0b19

+40 -7
+40 -7
pkgs/applications/video/byzanz/default.nix
··· 1 - { lib, stdenv, fetchgit, wrapGAppsHook, which, gnome, glib, intltool, pkg-config, libtool, cairo, gtk3, gst_all_1, xorg }: 2 3 stdenv.mkDerivation { 4 - version = "0.2.3.alpha"; 5 pname = "byzanz"; 6 7 src = fetchgit { 8 url = "https://gitlab.gnome.org/Archive/byzanz"; 9 - rev = "1875a7f6a3903b83f6b1d666965800f47db9286a"; 10 - sha256 = "0a72fw2mxl8vdcdnzy0bwis4jk28pd7nc8qgr4vhyw5pd48dynvh"; 11 }; 12 13 patches = [ ./add-amflags.patch ]; ··· 16 ./autogen.sh --prefix=$out 17 ''; 18 19 - NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 20 21 nativeBuildInputs = [ pkg-config ]; 22 - buildInputs = [ which gnome.gnome-common glib intltool libtool cairo gtk3 xorg.xwininfo xorg.libXdamage ] 23 - ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly gst-libav wrapGAppsHook ]); 24 25 meta = with lib; { 26 description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser";
··· 1 + { lib, stdenv 2 + , fetchgit 3 + , wrapGAppsHook 4 + , cairo 5 + , glib 6 + , gnome 7 + , gst_all_1 8 + , gtk3 9 + , intltool 10 + , libtool 11 + , pkg-config 12 + , which 13 + , xorg 14 + }: 15 16 stdenv.mkDerivation { 17 pname = "byzanz"; 18 + version = "unstable-2016-03-12"; 19 20 src = fetchgit { 21 url = "https://gitlab.gnome.org/Archive/byzanz"; 22 + rev = "81235d235d12c9687897f7fc6ec0de1feaed6623"; 23 + hash = "sha256-3DUwXCPBAmeCRlDkiPUgwNyBa6bCvC/TLguMCK3bo4E="; 24 }; 25 26 patches = [ ./add-amflags.patch ]; ··· 29 ./autogen.sh --prefix=$out 30 ''; 31 32 + NIX_CFLAGS_COMPILE = builtins.concatStringsSep " " [ 33 + "-Wno-error=deprecated-declarations" 34 + "-Wno-error=incompatible-pointer-types" 35 + ]; 36 37 nativeBuildInputs = [ pkg-config ]; 38 + buildInputs = [ 39 + which 40 + gnome.gnome-common 41 + glib 42 + intltool 43 + libtool 44 + cairo 45 + gtk3 46 + xorg.xwininfo 47 + xorg.libXdamage 48 + ] ++ (with gst_all_1; [ 49 + gstreamer 50 + gst-plugins-base 51 + gst-plugins-bad 52 + gst-plugins-good 53 + gst-plugins-ugly 54 + gst-libav 55 + wrapGAppsHook 56 + ]); 57 58 meta = with lib; { 59 description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser";