about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2024-06-20 03:01:00 +0200
committerGitHub <noreply@github.com>2024-06-20 03:01:00 +0200
commitdd3cf6eb699a599d41a2ed85fa6a22b7578d6756 (patch)
tree850cb523c0dd6e9473cc42e0a46a1ef8dde0d3c4 /pkgs/applications/video/mpv
parenta15139cf872af66012b59d03b89d5410a31a9e08 (diff)
parent7e9245b3de657857257d8abd06e77073e059c1af (diff)
Merge pull request #318783 from pbsds/fix-reproducible-patch-urls-1717622023
 treewide: make fetchpatch urls reproducible
Diffstat (limited to 'pkgs/applications/video/mpv')
-rw-r--r--pkgs/applications/video/mpv/scripts/mpv-notify-send.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix
index 623e5db22664a..b103a45d275bf 100644
--- a/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix
+++ b/pkgs/applications/video/mpv/scripts/mpv-notify-send.nix
@@ -21,7 +21,8 @@ buildLua rec {
   patches = [
     # show title of online videos instead of url
     (fetchpatch {
-      url = "https://github.com/emilazy/mpv-notify-send/pull/6.patch";
+      name = "6.patch"; # https://github.com/emilazy/mpv-notify-send/pull/6
+      url = "https://github.com/emilazy/mpv-notify-send/commit/948347e14890e15e89cd1e069beb1140e2d01dce.patch";
       hash = "sha256-7aXQ8qeqG4yX0Uyn09xCIESnwPZsb6Frd7C49XgbpFw=";
     })
   ];