about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorJohn Garcia <jgarcia3788@yahoo.co.uk>2024-01-15 11:33:34 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-01-15 15:52:57 +0000
commit2121acdd54a4ed88e97d6e027546659ab480f1b5 (patch)
tree25943a707f867bf82f29ee612b4750308ccde722 /pkgs/applications/misc
parentb8dd8be3c790215716e7c12b247f45ca525867e2 (diff)
get_iplayer: 3.3.4 -> 3.3.5
(cherry picked from commit 17ee4c14e60305d391de0d6d00e897be35990ff8)
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/get_iplayer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/get_iplayer/default.nix b/pkgs/applications/misc/get_iplayer/default.nix
index 35a39918b1654..12d056b01ec6b 100644
--- a/pkgs/applications/misc/get_iplayer/default.nix
+++ b/pkgs/applications/misc/get_iplayer/default.nix
@@ -11,13 +11,13 @@
 
 perlPackages.buildPerlPackage rec {
   pname = "get_iplayer";
-  version = "3.34";
+  version = "3.35";
 
   src = fetchFromGitHub {
     owner = "get-iplayer";
     repo = "get_iplayer";
     rev = "v${version}";
-    hash = "sha256-KuDNngHOoeEHJExEHoLdNO95ZUvLx8TWiAOTmRKHtmQ=";
+    hash = "sha256-fqzrgmtqy7dlmGEaTXAqpdt9HqZCVooJ0Vf6/JUKihw=";
   };
 
   nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isDarwin shortenPerlShebang;
@@ -35,7 +35,7 @@ perlPackages.buildPerlPackage rec {
 
     install -D get_iplayer -t $out/bin
     wrapProgram $out/bin/get_iplayer --suffix PATH : ${lib.makeBinPath [ atomicparsley ffmpeg ]} --prefix PERL5LIB : $PERL5LIB
-    install -D get_iplayer.1 -t $out/share/man/man1
+    install -Dm444 get_iplayer.1 -t $out/share/man/man1
 
     runHook postInstall
   '';