mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #11763 from DamienCassou/new-recordmydesktop
recordmydesktop: init at 0.3.8-svn602
This commit is contained in:
commit
7dfe60b509
2 changed files with 26 additions and 0 deletions
24
pkgs/applications/video/recordmydesktop/default.nix
Normal file
24
pkgs/applications/video/recordmydesktop/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchsvn, automake, autoconf, zlib, popt, xorg, libvorbis, libtheora }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "recordmydesktop-${version}";
|
||||
version = "0.3.8.1-svn602";
|
||||
|
||||
src = fetchsvn {
|
||||
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/recordmydesktop;
|
||||
rev = 602;
|
||||
sha256 = "1avirkc4ymrd575m616pi6wpgq1i0r5sb3qahps1g18sjpxks0lf";
|
||||
};
|
||||
|
||||
buildInputs = [ automake autoconf zlib popt xorg.libICE xorg.libSM xorg.libX11 xorg.libXext xorg.libXfixes xorg.libXdamage libvorbis libtheora ];
|
||||
|
||||
preConfigure = ''./autogen.sh'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Desktop session recorder";
|
||||
homepage = http://recordmydesktop.sourceforge.net/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.DamienCassou ];
|
||||
};
|
||||
}
|
|
@ -2878,6 +2878,8 @@ let
|
|||
|
||||
reaverwps = callPackage ../tools/networking/reaver-wps {};
|
||||
|
||||
recordmydesktop = callPackage ../applications/video/recordmydesktop { };
|
||||
|
||||
recutils = callPackage ../tools/misc/recutils { };
|
||||
|
||||
recoll = callPackage ../applications/search/recoll { };
|
||||
|
|
Loading…
Reference in a new issue