Merge pull request #199371 from figsoda/fetchCrate

fetchCrate: rewrite in terms of fetchzip
This commit is contained in:
figsoda 2022-12-05 18:15:33 -05:00 committed by GitHub
commit ff93685724
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,38 +1,15 @@
{ lib, fetchurl, unzip }:
{ lib, fetchzip }:
{ crateName ? args.pname
, pname ? null
, version
, sha256
, ... } @ args:
, ...
} @ args:
assert pname == null || pname == crateName;
lib.overrideDerivation (fetchurl ({
fetchzip ({
name = "${crateName}-${version}.tar.gz";
url = "https://crates.io/api/v1/crates/${crateName}/${version}/download";
recursiveHash = true;
downloadToTemp = true;
postFetch =
''
export PATH=${unzip}/bin:$PATH
unpackDir="$TMPDIR/unpack"
mkdir "$unpackDir"
cd "$unpackDir"
renamed="$TMPDIR/${crateName}-${version}.tar.gz"
mv "$downloadedFile" "$renamed"
unpackFile "$renamed"
fn=$(cd "$unpackDir" && echo *)
if [ -f "$unpackDir/$fn" ]; then
mkdir $out
fi
mv "$unpackDir/$fn" "$out"
'';
} // removeAttrs args [ "crateName" "pname" "version" ]))
# Hackety-hack: we actually need unzip hooks, too
(x: {nativeBuildInputs = x.nativeBuildInputs++ [unzip];})
extension = "tar.gz";
} // removeAttrs args [ "crateName" "pname" "version" ])