mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
fetchfirefoxaddon: support for SRI hashes
This commit is contained in:
parent
35d4f19991
commit
e9158eca70
@ -5,6 +5,7 @@
|
||||
, sha1 ? ""
|
||||
, sha256 ? ""
|
||||
, sha512 ? ""
|
||||
, hash ? ""
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
@ -30,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
src = fetchurl {
|
||||
url = url;
|
||||
inherit md5 sha1 sha256 sha512;
|
||||
inherit md5 sha1 sha256 sha512 hash;
|
||||
};
|
||||
nativeBuildInputs = [ coreutils unzip zip jq ];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user