recordmydesktop: use ALSA backend

This commit is contained in:
Nikolay Amiantov 2016-07-10 15:13:40 +03:00
parent 85c6ab9c8a
commit 29d570ef82

View File

@ -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 { stdenv.mkDerivation rec {
name = "recordmydesktop-${version}"; name = "recordmydesktop-${version}";
version = "0.3.8.1-svn602"; version = "0.3.8.1-svn${rev}";
rev = "602";
src = fetchsvn { src = fetchsvn {
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop; url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
rev = 602; inherit rev;
sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf"; 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; { meta = with stdenv.lib; {
description = "Desktop session recorder"; description = "Desktop session recorder";