nixpkgs/pkgs/applications/video/recordmydesktop/default.nix

30 lines
838 B
Nix
Raw Normal View History

2016-07-10 12:13:40 +00:00
{ stdenv, fetchsvn, autoreconfHook, zlib, popt, alsaLib, libvorbis, libtheora
, libICE, libSM, libX11, libXext, libXfixes, libXdamage }:
2015-12-16 15:06:55 +00:00
stdenv.mkDerivation rec {
pname = "recordmydesktop";
2016-07-10 12:13:40 +00:00
version = "0.3.8.1-svn${rev}";
rev = "602";
2015-12-16 15:06:55 +00:00
src = fetchsvn {
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
2016-07-10 12:13:40 +00:00
inherit rev;
2015-12-16 15:06:55 +00:00
sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf";
};
2016-07-10 12:13:40 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-12-16 15:06:55 +00:00
2016-07-10 12:13:40 +00:00
buildInputs = [
zlib popt alsaLib libICE libSM libX11 libXext
libXfixes libXdamage libvorbis libtheora
];
2015-12-16 15:06:55 +00:00
meta = with stdenv.lib; {
description = "Desktop session recorder";
homepage = http://recordmydesktop.sourceforge.net/;
license = licenses.gpl2;
platforms = platforms.linux;
2017-01-31 10:00:14 +00:00
maintainers = [ ];
2015-12-16 15:06:55 +00:00
};
}