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: db4ccde60dcb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 88b16119c1e3
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 7, 2020

  1. Copy the full SHA
    88b1611 View commit details
Showing with 978 additions and 911 deletions.
  1. +975 −908 pkgs/development/tools/wasm-bindgen-cli/0001-Add-cargo.lock.patch
  2. +3 −3 pkgs/development/tools/wasm-bindgen-cli/default.nix
1,883 changes: 975 additions & 908 deletions pkgs/development/tools/wasm-bindgen-cli/0001-Add-cargo.lock.patch

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pkgs/development/tools/wasm-bindgen-cli/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
version = "0.2.58";
version = "0.2.59";

src = fetchFromGitHub {
owner = "rustwasm";
repo = "wasm-bindgen";
rev = version;
sha256 = "18n30i1pzrhm2wasa1737j9gihx1d6pwx77z552dcj1rdp7ar6ir";
sha256 = "1i0hdky5dlkrzcphddm122yxfhgcvnszh4q1as0r41vhfs5ss597";
};

buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security curl ];
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;

cargoSha256 = "1kkvgqvn08pv0654b7s40vs92myzfiv965561mwfzhj8fx8f1y18";
cargoSha256 = "1cp8ns0cywzqchdw5hkg4fhxhqb6apxwjjasf1ksf3dgjwynlhzm";
cargoPatches = [ ./0001-Add-cargo.lock.patch ];
cargoBuildFlags = [ "-p" pname ];