recordmydesktop: use ALSA backend
This commit is contained in:
parent
85c6ab9c8a
commit
29d570ef82
@ -1,18 +1,23 @@
|
||||
{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }:
|
||||
{ stdenv, fetchsvn, autoreconfHook, zlib, popt, alsaLib, libvorbis, libtheora
|
||||
, libICE, libSM, libX11, libXext, libXfixes, libXdamage }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "recordmydesktop-${version}";
|
||||
version = "0.3.8.1-svn602";
|
||||
version = "0.3.8.1-svn${rev}";
|
||||
rev = "602";
|
||||
|
||||
src = fetchsvn {
|
||||
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
|
||||
rev = 602;
|
||||
inherit rev;
|
||||
sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
preConfigure = ''./autogen.sh'';
|
||||
buildInputs = [
|
||||
zlib popt alsaLib libICE libSM libX11 libXext
|
||||
libXfixes libXdamage libvorbis libtheora
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Desktop session recorder";
|
||||
|
Loading…
Reference in New Issue
Block a user