···1-{ stdenv, fetchurl, makeWrapper, cacert, zlib, curl }:
23let
4 # Note: the version MUST be one version prior to the version we're
···29 sha256 = hashes."${platform}";
30 };
3132-in import ./binaryBuild.nix
33- { inherit stdenv fetchurl makeWrapper cacert zlib curl;
34 buildRustPackage = null;
35- inherit version src platform;
36 versionType = "bootstrap";
37 }
···1+{ stdenv, fetchurl, callPackage }:
23let
4 # Note: the version MUST be one version prior to the version we're
···29 sha256 = hashes."${platform}";
30 };
3132+in callPackage ./binaryBuild.nix
33+ { inherit version src platform;
34 buildRustPackage = null;
035 versionType = "bootstrap";
36 }