2019-08-02 14:58:00 +02:00
|
|
|
{ stdenv, fetchFromGitHub, mkDerivation
|
2019-04-22 22:20:53 +02:00
|
|
|
, pkgconfig, qtbase, qttools, qmake, qtmultimedia, qtx11extras, alsaLib, libv4l, libXrandr
|
2017-01-27 17:47:06 +01:00
|
|
|
, ffmpeg
|
|
|
|
}:
|
|
|
|
|
2019-08-02 14:58:00 +02:00
|
|
|
mkDerivation rec {
|
2019-04-22 22:20:53 +02:00
|
|
|
|
|
|
|
pname = "vokoscreen";
|
|
|
|
version = "2.5.8-beta";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vkohaupt";
|
|
|
|
repo = "vokoscreen";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1a85vbsi53mhzva49smqwcs61c51wv3ic410nvb9is9nlsbifwan";
|
2017-01-27 17:47:06 +01:00
|
|
|
};
|
|
|
|
|
2017-06-02 17:40:19 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2017-01-27 17:47:06 +01:00
|
|
|
buildInputs = [
|
2017-02-03 16:20:14 +01:00
|
|
|
alsaLib
|
|
|
|
libv4l
|
|
|
|
qtbase
|
2019-04-22 22:20:53 +02:00
|
|
|
qtmultimedia
|
2017-02-03 16:20:14 +01:00
|
|
|
qttools
|
|
|
|
qtx11extras
|
|
|
|
libXrandr
|
2017-01-27 17:47:06 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./ffmpeg-out-of-box.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's/lrelease-qt5/lrelease/g' vokoscreen.pro
|
|
|
|
'';
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace settings/QvkSettings.cpp --subst-var-by ffmpeg ${ffmpeg}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple GUI screencast recorder, using ffmpeg";
|
2019-04-22 22:20:53 +02:00
|
|
|
homepage = "http://linuxecke.volkoh.de/vokoscreen/vokoscreen.html";
|
2017-01-27 17:47:06 +01:00
|
|
|
longDescription = ''
|
|
|
|
vokoscreen is an easy to use screencast creator to record
|
|
|
|
educational videos, live recordings of browser, installation,
|
|
|
|
videoconferences, etc.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2Plus;
|
2019-04-22 22:20:53 +02:00
|
|
|
maintainers = [ maintainers.league ];
|
2017-01-27 17:47:06 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|