Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a6b253665c8d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ca26ed4dc60c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 17, 2020

  1. wrangler: 1.12.2 -> 1.12.3

    bbigras committed Dec 17, 2020
    Copy the full SHA
    b6c4c3d View commit details
  2. Merge pull request #107089 from bbigras/wrangler

    wrangler: 1.12.2 -> 1.12.3
    Br1ght0ne authored Dec 17, 2020
    Copy the full SHA
    ca26ed4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/wrangler/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/wrangler/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "wrangler";
version = "1.12.2";
version = "1.12.3";

src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
sha256 = "1w0j6if1fnih1036hlb9a3c6wgjw4p057llhjf0f3d568ah1244a";
sha256 = "1h9020yf5jsbilzn94h7qyxw9qnz3vw43g8a2415wvjqq6ihzfvm";
};

cargoSha256 = "0d9wvdjjakznz8dnqx4gqxh0xkxrh4229460hg6dr9qn492p7nfx";
cargoSha256 = "12azc41y2yx936ax9b1yylc0gy91k0m7ih6p0bkw7m928f762hpx";

nativeBuildInputs = [ perl ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ];