forked from mirrors/nixpkgs
Add byzanz
This commit is contained in:
parent
b41f2cdeb8
commit
5ab448d944
12
pkgs/applications/video/byzanz/add-amflags.patch
Normal file
12
pkgs/applications/video/byzanz/add-amflags.patch
Normal 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 \
|
28
pkgs/applications/video/byzanz/default.nix
Normal file
28
pkgs/applications/video/byzanz/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -770,6 +770,8 @@ let
|
||||||
par2Support = (config.bup.par2Support or false);
|
par2Support = (config.bup.par2Support or false);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
byzanz = callPackage ../applications/video/byzanz {};
|
||||||
|
|
||||||
ori = callPackage ../tools/backup/ori { };
|
ori = callPackage ../tools/backup/ori { };
|
||||||
|
|
||||||
atool = callPackage ../tools/archivers/atool { };
|
atool = callPackage ../tools/archivers/atool { };
|
||||||
|
|
Loading…
Reference in a new issue