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: 40e76194f8f5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1c39035cad1b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 24, 2018

  1. yarn: 1.6.0 -> 1.7.0

    dywedir committed May 24, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    tilpner Till Höppner
    Copy the full SHA
    06e750c View commit details
  2. Merge pull request #41011 from dywedir/yarn

    yarn: 1.6.0 -> 1.7.0
    lukateras authored May 24, 2018
    Copy the full SHA
    1c39035 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/yarn/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/yarn/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "yarn-${version}";
version = "1.6.0";
version = "1.7.0";

src = fetchzip {
url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
sha256 = "0bblp1jy4s9y5rpcqn40w61qwsmxr342xkcn7ykk88i7sng2cgfw";
sha256 = "00fxihv9ih40k6f21a7hb6vkx4h4m6ks0fbai5h9ssi0p4m5j3by";
};

buildInputs = [makeWrapper nodejs];