2014-05-09 15:50:40 +02: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 14:57:20 +02:00
|
|
|
|
|
|
|
{ lib, fetchurl, unzip }:
|
|
|
|
|
|
|
|
{ # Optionally move the contents of the unpacked tree up one level.
|
|
|
|
stripRoot ? true
|
2014-05-09 15:50:40 +02:00
|
|
|
, url
|
2014-05-08 14:57:20 +02:00
|
|
|
, ... } @ args:
|
|
|
|
|
2014-12-12 13:16:57 +01:00
|
|
|
lib.overrideDerivation (fetchurl ({
|
2014-06-30 13:21:30 +02:00
|
|
|
name = args.name or (baseNameOf url);
|
2014-05-08 14:57:20 +02:00
|
|
|
|
|
|
|
recursiveHash = true;
|
|
|
|
|
|
|
|
downloadToTemp = true;
|
|
|
|
|
|
|
|
postFetch =
|
|
|
|
''
|
|
|
|
export PATH=${unzip}/bin:$PATH
|
|
|
|
mkdir $out
|
|
|
|
cd $out
|
2014-05-09 15:50:40 +02:00
|
|
|
renamed="$TMPDIR/${baseNameOf url}"
|
2014-05-08 14:57:20 +02:00
|
|
|
mv "$downloadedFile" "$renamed"
|
|
|
|
unpackFile "$renamed"
|
|
|
|
''
|
|
|
|
# FIXME: handle zip files that contain a single regular file.
|
|
|
|
+ lib.optionalString stripRoot ''
|
|
|
|
shopt -s dotglob
|
|
|
|
if [ "$(ls -d $out/* | wc -l)" != 1 ]; then
|
|
|
|
echo "error: zip file must contain a single directory."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fn=$(cd "$out" && echo *)
|
|
|
|
mv $out/$fn/* "$out/"
|
|
|
|
rmdir "$out/$fn"
|
|
|
|
'';
|
2014-12-12 13:16:57 +01:00
|
|
|
} // args))
|
|
|
|
# Hackety-hack: we actually need unzip hooks, too
|
|
|
|
(x: {nativeBuildInputs = x.nativeBuildInputs++ [unzip];})
|