about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-01-18 19:13:05 -0500
committerGitHub <noreply@github.com>2023-01-18 19:13:05 -0500
commitd1c8ffd7ecfd3749adffde8469e4512715ede588 (patch)
tree0854cff85396664fbeb49cc22cc93e4ab833ec23 /pkgs
parent556a4a7951a80bb73f395aedd105ffe80329fadb (diff)
parent541af71fbc78557fa4ee7651c27edf1bc5589ee7 (diff)
Merge pull request #211332 from figsoda/thumbnail
mpvScripts.thumbnail: 0.5.1 -> 0.5.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/video/mpv/scripts/thumbnail.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/video/mpv/scripts/thumbnail.nix b/pkgs/applications/video/mpv/scripts/thumbnail.nix
index a08bce6699fa3..60b392a6aa277 100644
--- a/pkgs/applications/video/mpv/scripts/thumbnail.nix
+++ b/pkgs/applications/video/mpv/scripts/thumbnail.nix
@@ -2,13 +2,13 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "mpv-thumbnail-script";
-  version = "0.5.1";
+  version = "0.5.2";
 
   src = fetchFromGitHub {
     owner = "marzzzello";
     repo = "mpv_thumbnail_script";
     rev = version;
-    sha256 = "sha256-0nqV8vY3cBOJkLRoQ33Cc+4+vSK45i9yWbhKiQIuVSw=";
+    sha256 = "sha256-6J1eeuSYyUJmWLIl9WsQ4NzQOBJNO3Cnl5jcPEal4vM=";
   };
 
   nativeBuildInputs = [ python3 ];
@@ -29,6 +29,7 @@ stdenvNoCC.mkDerivation rec {
   meta = with lib; {
     description = "A lua script to show preview thumbnails in mpv's OSC seekbar";
     homepage = "https://github.com/marzzzello/mpv_thumbnail_script";
+    changelog = "https://github.com/marzzzello/mpv_thumbnail_script/releases/tag/${version}";
     license = licenses.gpl3Plus;
     platforms = platforms.all;
     maintainers = with maintainers; [ figsoda ];