2014-05-09 13:50:40 +00:00
|
|
|
# This function downloads and unpacks an archive file, such as a zip
|
|
|
|
# or tar file. This is primarily useful for dynamically generated
|
|
|
|
# archives, such as GitHub's /archive URLs, where the unpacked content
|
|
|
|
# of the zip file doesn't change, but the zip file itself may
|
|
|
|
# (e.g. due to minor changes in the compression algorithm, or changes
|
|
|
|
# in timestamps).
|
2014-05-08 12:57:20 +00:00
|
|
|
|
2021-04-05 01:40:16 +00:00
|
|
|
{ lib, fetchurl, unzip }:
|
2014-05-08 12:57:20 +00:00
|
|
|
|
2020-03-26 04:35:40 +00:00
|
|
|
{ # Optionally move the contents of the unpacked tree up one level.
|
|
|
|
stripRoot ? true
|
2021-04-05 01:40:16 +00:00
|
|
|
, url ? ""
|
|
|
|
, urls ? []
|
2015-12-29 15:50:21 +00:00
|
|
|
, extraPostFetch ? ""
|
2020-03-26 04:35:40 +00:00
|
|
|
, name ? "source"
|
2021-08-10 08:21:27 +00:00
|
|
|
, # Allows to set the extension for the intermediate downloaded
|
|
|
|
# file. This can be used as a hint for the unpackCmdHooks to select
|
|
|
|
# an appropriate unpacking tool.
|
|
|
|
extension ? null
|
2014-05-08 12:57:20 +00:00
|
|
|
, ... } @ args:
|
|
|
|
|
2021-04-05 01:40:16 +00:00
|
|
|
(fetchurl (let
|
2021-08-10 08:21:27 +00:00
|
|
|
tmpFilename =
|
|
|
|
if extension != null
|
|
|
|
then "download.${extension}"
|
|
|
|
else baseNameOf (if url != "" then url else builtins.head urls);
|
2021-04-05 01:40:16 +00:00
|
|
|
in {
|
2017-10-30 16:17:07 +00:00
|
|
|
inherit name;
|
2014-05-08 12:57:20 +00:00
|
|
|
|
|
|
|
recursiveHash = true;
|
|
|
|
|
2020-03-26 04:35:40 +00:00
|
|
|
downloadToTemp = true;
|
2020-02-02 21:56:11 +00:00
|
|
|
|
2020-03-26 04:35:40 +00:00
|
|
|
postFetch =
|
|
|
|
''
|
|
|
|
unpackDir="$TMPDIR/unpack"
|
|
|
|
mkdir "$unpackDir"
|
|
|
|
cd "$unpackDir"
|
2015-01-23 05:31:29 +00:00
|
|
|
|
2021-08-10 08:21:27 +00:00
|
|
|
renamed="$TMPDIR/${tmpFilename}"
|
2020-03-26 04:35:40 +00:00
|
|
|
mv "$downloadedFile" "$renamed"
|
|
|
|
unpackFile "$renamed"
|
|
|
|
''
|
|
|
|
+ (if stripRoot then ''
|
|
|
|
if [ $(ls "$unpackDir" | wc -l) != 1 ]; then
|
|
|
|
echo "error: zip file must contain a single file or directory."
|
|
|
|
echo "hint: Pass stripRoot=false; to fetchzip to assume flat list of files."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fn=$(cd "$unpackDir" && echo *)
|
|
|
|
if [ -f "$unpackDir/$fn" ]; then
|
|
|
|
mkdir $out
|
|
|
|
fi
|
|
|
|
mv "$unpackDir/$fn" "$out"
|
|
|
|
'' else ''
|
|
|
|
mv "$unpackDir" "$out"
|
2020-10-21 22:55:55 +00:00
|
|
|
'')
|
|
|
|
+ ''
|
2021-02-04 14:48:47 +00:00
|
|
|
${extraPostFetch}
|
2021-02-05 13:08:57 +00:00
|
|
|
''
|
|
|
|
# Remove non-owner write permissions
|
|
|
|
# Fixes https://github.com/NixOS/nixpkgs/issues/38649
|
|
|
|
+ ''
|
|
|
|
chmod 755 "$out"
|
2020-10-21 22:55:55 +00:00
|
|
|
'';
|
2021-08-10 08:21:27 +00:00
|
|
|
} // removeAttrs args [ "stripRoot" "extraPostFetch" "extension" ])).overrideAttrs (x: {
|
2018-09-21 16:55:12 +00:00
|
|
|
# Hackety-hack: we actually need unzip hooks, too
|
|
|
|
nativeBuildInputs = x.nativeBuildInputs ++ [ unzip ];
|
|
|
|
})
|