2016-08-13 07:33:50 +00:00
|
|
|
{ stdenv, fetchgit, wrapGAppsHook, which, gnome3, glib, intltool, pkgconfig, libtool, cairo, gtk3, gst_all_1, xorg }:
|
2014-10-23 08:42:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "0.2.3.alpha";
|
|
|
|
name = "byzanz-${version}";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/GNOME/byzanz;
|
|
|
|
rev = "1875a7f6a3903b83f6b1d666965800f47db9286a";
|
2016-06-02 11:26:44 +00:00
|
|
|
sha256 = "0a72fw2mxl8vdcdnzy0bwis4jk28pd7nc8qgr4vhyw5pd48dynvh";
|
2014-10-23 08:42:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./add-amflags.patch ];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
./autogen.sh --prefix=$out
|
|
|
|
'';
|
|
|
|
|
2015-06-09 18:37:03 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ which gnome3.gnome-common glib intltool libtool cairo gtk3 xorg.xwininfo ]
|
2016-08-13 07:33:50 +00:00
|
|
|
++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-bad gst-plugins-good gst-plugins-ugly gst-libav wrapGAppsHook ]);
|
2014-10-23 08:42:56 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool to record a running X desktop to an animation suitable for presentation in a web browser";
|
|
|
|
homepage = https://github.com/GNOME/byzanz;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2017-01-31 10:00:14 +00:00
|
|
|
maintainers = [ ];
|
2014-10-23 08:42:56 +00:00
|
|
|
};
|
|
|
|
}
|