about summary refs log tree commit diff
path: root/pkgs/applications/video/peek
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2021-05-05 17:42:05 +0200
committerThomas Gerbet <thomas@gerbet.me>2021-05-09 22:54:34 +0200
commit2fcba3a99958855371e3d4c09b0f8ff2c32ceb19 (patch)
tree82a40e07e748410bdfbf3abd8d7673fe35fcd50b /pkgs/applications/video/peek
parentfe50cb0ee149ab86277ab16a9f0fdd480df43eb2 (diff)
peek: use ffmpeg 4
See migrate away from ffmpeg_3 #120705.
Diffstat (limited to 'pkgs/applications/video/peek')
-rw-r--r--pkgs/applications/video/peek/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/video/peek/default.nix b/pkgs/applications/video/peek/default.nix
index d4e8f9d21b29e..edeb848867fbc 100644
--- a/pkgs/applications/video/peek/default.nix
+++ b/pkgs/applications/video/peek/default.nix
@@ -16,7 +16,7 @@
 , glib
 , cairo
 , keybinder3
-, ffmpeg_3
+, ffmpeg
 , python3
 , libxml2
 , gst_all_1
@@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
   '';
 
   preFixup = ''
-    gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ which ffmpeg_3 gifski ]})
+    gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ which ffmpeg gifski ]})
   '';
 
   passthru = {
@@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://github.com/phw/peek";
     description = "Simple animated GIF screen recorder with an easy to use interface";
-    license = licenses.gpl3;
+    license = licenses.gpl3Plus;
     maintainers = with maintainers; [ puffnfresh ];
     platforms = platforms.linux;
   };