summary refs log tree commit diff
path: root/pkgs/applications/video/filebot/default.nix
diff options
context:
space:
mode:
authorFelix Tenley <dev@felschr.com>2021-05-08 19:21:11 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-08 11:32:32 -0700
commit2ceafcc27ea25cf0904d10af69ba4bef5845dcdb (patch)
tree239d5ee2077d2060732e61f2622f0aa51be77aa0 /pkgs/applications/video/filebot/default.nix
parent094283528b4b183f5ab6dc15f597a705c0ec9542 (diff)
downloadnixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar.gz
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar.bz2
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar.lz
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar.xz
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.tar.zst
nixpkgs-2ceafcc27ea25cf0904d10af69ba4bef5845dcdb.zip
filebot: fix source by using web archive
Diffstat (limited to 'pkgs/applications/video/filebot/default.nix')
-rw-r--r--pkgs/applications/video/filebot/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/filebot/default.nix b/pkgs/applications/video/filebot/default.nix
index a9d56cc9108..92c15fea9a3 100644
--- a/pkgs/applications/video/filebot/default.nix
+++ b/pkgs/applications/video/filebot/default.nix
@@ -13,8 +13,8 @@ stdenv.mkDerivation rec {
   version = "4.9.3";
 
   src = fetchurl {
-    url = "https://get.filebot.net/filebot/FileBot_${version}/FileBot_${version}-portable.tar.xz";
-    sha256 = "sha256-xgdCjo2RLp+EtUTfSiys7PURhnC00R9IOLPtz3427pA=";
+    url = "https://web.archive.org/web/20210326102451/https://get.filebot.net/filebot/FileBot_${version}/FileBot_${version}-portable.tar.xz";
+    sha256 = "sha256-T+y8k757/qFCVOCc/SNc7a+KmyscPlowubNQYzMr8jY=";
   };
 
   unpackPhase = "tar xvf $src";