Merge pull request #309460 from r-ryantm/auto-update/home-manager
[NixPkgs.git] / pkgs / build-support / rust / fetchcrate.nix
blob423f4d786fde130782f6da9939419b06710a230c
1 { lib, fetchzip, fetchurl }:
3 { crateName ? args.pname
4 , pname ? null
5   # The `dl` field of the registry's index configuration
6   # https://doc.rust-lang.org/cargo/reference/registry-index.html#index-configuration
7 , registryDl ? "https://crates.io/api/v1/crates"
8 , version
9 , unpack ? true
10 , ...
11 } @ args:
13 assert pname == null || pname == crateName;
15 (if unpack then fetchzip else fetchurl) ({
16   name = "${crateName}-${version}.tar.gz";
17   url = "${registryDl}/${crateName}/${version}/download";
18 } // lib.optionalAttrs unpack {
19   extension = "tar.gz";
20 } // removeAttrs args [ "crateName" "pname" "registryDl" "version" "unpack" ])