Merge pull request #245951 from amarshall/fetchfirefoxaddon-md6

This commit is contained in:
Artturi 2023-07-29 04:15:49 +03:00 committed by GitHub
commit 11cf5e1c74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {