about summary refs log tree commit diff
path: root/pkgs/build-support/rust/fetchcrate.nix
blob: 423f4d786fde130782f6da9939419b06710a230c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchzip, fetchurl }:

{ crateName ? args.pname
, pname ? null
  # The `dl` field of the registry's index configuration
  # https://doc.rust-lang.org/cargo/reference/registry-index.html#index-configuration
, registryDl ? "https://crates.io/api/v1/crates"
, version
, unpack ? true
, ...
} @ args:

assert pname == null || pname == crateName;

(if unpack then fetchzip else fetchurl) ({
  name = "${crateName}-${version}.tar.gz";
  url = "${registryDl}/${crateName}/${version}/download";
} // lib.optionalAttrs unpack {
  extension = "tar.gz";
} // removeAttrs args [ "crateName" "pname" "registryDl" "version" "unpack" ])