mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, mkDerivation, fetchurl, alsaLib, ffmpeg_3, libjack2, libX11, libXext, qtx11extras
|
|
, libXfixes, libGLU, libGL, pkg-config, libpulseaudio, qtbase, cmake, ninja
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "simplescreenrecorder";
|
|
version = "0.3.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/MaartenBaert/ssr/archive/${version}.tar.gz";
|
|
sha256 = "0l6irdadqpajvv0dj3ngs1231n559l0y1pykhs2h7526qm4w7xal";
|
|
};
|
|
|
|
cmakeFlags = [ "-DWITH_QT5=TRUE" ];
|
|
|
|
patches = [ ./fix-paths.patch ];
|
|
|
|
postPatch = ''
|
|
for i in scripts/ssr-glinject src/AV/Input/GLInjectInput.cpp; do
|
|
substituteInPlace $i \
|
|
--subst-var out \
|
|
--subst-var-by sh ${stdenv.shell}
|
|
done
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ninja ];
|
|
buildInputs = [
|
|
alsaLib ffmpeg_3 libjack2 libX11 libXext libXfixes libGLU libGL
|
|
libpulseaudio qtbase qtx11extras
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A screen recorder for Linux";
|
|
homepage = "https://www.maartenbaert.be/simplescreenrecorder";
|
|
license = licenses.gpl3;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|