Merge pull request #4632 from DamienCassou/byzanz

Add byzanz
This commit is contained in:
cillianderoiste 2014-10-23 19:34:10 +02:00
commit 79ce94c039
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,12 @@
diff --git a/Makefile.am b/Makefile.am
index 6eedb51..7b54313 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,7 @@
SUBDIRS = macros data gifenc src po
+ACLOCAL_AMFLAGS = -I macros
+
EXTRA_DIST = \
MAINTAINERS \
depcomp \

View file

@ -0,0 +1,28 @@
{ stdenv, fetchgit, which, gnome3_12, glib, intltool, pkgconfig, libtool, cairo, gtk3, gst_all_1 }:
stdenv.mkDerivation rec {
version = "0.2.3.alpha";
name = "byzanz-${version}";
src = fetchgit {
url = git://github.com/GNOME/byzanz;
rev = "1875a7f6a3903b83f6b1d666965800f47db9286a";
sha256 = "1b7hyilwj9wf2ri5zq63889bvskagdnqjc91hvyjmx1aj7vdkzd4";
};
patches = [ ./add-amflags.patch ];
preBuild = ''
./autogen.sh --prefix=$out
'';
buildInputs = [ which gnome3_12.gnome_common glib intltool pkgconfig libtool cairo gtk3 gst_all_1.gstreamer gst_all_1.gst-plugins-base ];
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;
maintainers = [ maintainers.DamienCassou ];
};
}

View file

@ -772,6 +772,8 @@ let
par2Support = (config.bup.par2Support or false);
};
byzanz = callPackage ../applications/video/byzanz {};
ori = callPackage ../tools/backup/ori { };
atool = callPackage ../tools/archivers/atool { };