forked from mirrors/nixpkgs
wrangler: 1.10.3 -> 1.12.2
This commit is contained in:
parent
989b403c7f
commit
3024a74046
|
@ -1,19 +1,19 @@
|
|||
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin }:
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, curl, darwin, perl }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "wrangler";
|
||||
version = "1.10.3";
|
||||
version = "1.12.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloudflare";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0703zlrmv0if575rj1mrgfg1a5qbf98sqjhhj09hab69i96wbrk9";
|
||||
sha256 = "1w0j6if1fnih1036hlb9a3c6wgjw4p057llhjf0f3d568ah1244a";
|
||||
};
|
||||
|
||||
cargoSha256 = "0znzyqzvbqcl4mmxpsvaf592xrs968x57czj45jibmafq033dbfa";
|
||||
cargoSha256 = "0d9wvdjjakznz8dnqx4gqxh0xkxrh4229460hg6dr9qn492p7nfx";
|
||||
|
||||
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config ];
|
||||
nativeBuildInputs = stdenv.lib.optionals stdenv.isLinux [ pkg-config perl ];
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isLinux [ openssl ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [
|
||||
|
|
Loading…
Reference in a new issue