about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2024-05-25 15:44:14 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2024-05-25 15:44:14 +0200
commit34e11fff18f67efeaec01681842bb08e7c405a34 (patch)
treeb370dafa2f75a92347a11baca777a1a75dc3b455 /pkgs/applications/video
parent8d37224ffac3c5faed53f450559a670aedfa1e12 (diff)
simplescreenrecorder: add update script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/simplescreenrecorder/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/video/simplescreenrecorder/default.nix b/pkgs/applications/video/simplescreenrecorder/default.nix
index cbeb325e7ce09..76414497b7be9 100644
--- a/pkgs/applications/video/simplescreenrecorder/default.nix
+++ b/pkgs/applications/video/simplescreenrecorder/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, mkDerivation, fetchFromGitHub, alsa-lib, ffmpeg_4, libjack2, libX11, libXext, libXinerama, qtx11extras
-, libXfixes, libGLU, libGL, pkg-config, libpulseaudio, libv4l, qtbase, qttools, cmake, ninja
+, libXfixes, libGLU, libGL, pkg-config, libpulseaudio, libv4l, qtbase, qttools, cmake, ninja, nix-update-script
 }:
 
 mkDerivation rec {
@@ -34,6 +34,8 @@ mkDerivation rec {
     libpulseaudio libv4l qtbase qttools qtx11extras
   ];
 
+  passthru.updateScript = nix-update-script { };
+
   meta = with lib; {
     description = "A screen recorder for Linux";
     homepage = "https://www.maartenbaert.be/simplescreenrecorder";