qt-recordmydesktop: init at 0.3.8-svn602
This commit is contained in:
parent
7e0a6dd827
commit
e4aace7028
37
pkgs/applications/video/recordmydesktop/qt.nix
Normal file
37
pkgs/applications/video/recordmydesktop/qt.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, lib, fetchsvn, recordmydesktop, autoreconfHook, pkgconfig
|
||||||
|
, glib, pythonPackages, qt4, jack2, xwininfo }:
|
||||||
|
|
||||||
|
let
|
||||||
|
binPath = lib.makeBinPath [ recordmydesktop jack2 xwininfo ];
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "qt-recordmydesktop-${version}";
|
||||||
|
version = "0.3.8-svn${recordmydesktop.rev}";
|
||||||
|
|
||||||
|
src = fetchsvn {
|
||||||
|
url = https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk/qt-recordmydesktop;
|
||||||
|
inherit (recordmydesktop) rev;
|
||||||
|
sha256 = "0vz7amrmz317sbx2cv2186d0r57as4l26xa9rpim5gbvzk20caqc";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ glib qt4 ] ++ (with pythonPackages; [
|
||||||
|
python wrapPython pyqt4
|
||||||
|
]);
|
||||||
|
|
||||||
|
pythonPath = with pythonPackages; [ pyqt4 ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
makeWrapperArgs="--prefix PATH : ${binPath}"
|
||||||
|
wrapPythonPrograms
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "GTK frontend for recordmydesktop";
|
||||||
|
homepage = http://recordmydesktop.sourceforge.net/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.DamienCassou ];
|
||||||
|
};
|
||||||
|
}
|
@ -3238,6 +3238,10 @@ in
|
|||||||
jack2 = jack2Full;
|
jack2 = jack2Full;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
qt-recordmydesktop = callPackage ../applications/video/recordmydesktop/qt.nix {
|
||||||
|
jack2 = jack2Full;
|
||||||
|
};
|
||||||
|
|
||||||
recutils = callPackage ../tools/misc/recutils { };
|
recutils = callPackage ../tools/misc/recutils { };
|
||||||
|
|
||||||
recoll = callPackage ../applications/search/recoll { };
|
recoll = callPackage ../applications/search/recoll { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user