about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2023-07-28 16:18:15 -0400
committerAndrew Marshall <andrew@johnandrewmarshall.com>2023-07-28 16:18:15 -0400
commitffabc8c65820ff71f4de8b4e4ecd09a94c38100f (patch)
tree8528085d18bf919637fc62aadc1feb7f29a35775
parent205b4117a5324c8f1a768910bde639acb8dad3bd (diff)
fetchfirefoxaddon: fix passing md5 to fetchurl
Broken in 6f30e0a9062685bd7aa3b9cf025b31f32af0463f.

See https://github.com/NixOS/nixpkgs/issues/245949.
-rw-r--r--pkgs/build-support/fetchfirefoxaddon/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/build-support/fetchfirefoxaddon/default.nix b/pkgs/build-support/fetchfirefoxaddon/default.nix
index 41eaa550ea274..e07a6a1a79dd1 100644
--- a/pkgs/build-support/fetchfirefoxaddon/default.nix
+++ b/pkgs/build-support/fetchfirefoxaddon/default.nix
@@ -9,7 +9,6 @@
 
 { name
 , url ? null
-, md5 ? ""
 , sha1 ? ""
 , sha256 ? ""
 , sha512 ? ""
@@ -23,7 +22,7 @@ let
   source = if url == null then src else
   fetchurl {
     url = url;
-    inherit md5 sha1 sha256 sha512 hash;
+    inherit sha1 sha256 sha512 hash;
   };
 in
 stdenv.mkDerivation {