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

Commits on Jan 17, 2020

  1. rebar: 2.5.1 -> 2.6.4

    r-ryantm committed Jan 17, 2020
    Copy the full SHA
    a98253f View commit details

Commits on Jan 20, 2020

  1. Merge pull request #77899 from r-ryantm/auto-update/rebar

    rebar: 2.5.1 -> 2.6.4
    marsam authored Jan 20, 2020
    Copy the full SHA
    5f3a55c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/build-managers/rebar/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/build-managers/rebar/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@


let
version = "2.5.1";
version = "2.6.4";
in
stdenv.mkDerivation {
pname = "rebar";
inherit version;

src = fetchurl {
url = "https://github.com/rebar/rebar/archive/${version}.tar.gz";
sha256 = "1y9b0smw0g5q197xf4iklzmcf8ad6w52p6mwzpf7b0ib1nd89jw6";
sha256 = "01xxq1f1vrwca00pky2van26hi2hhr05ghfhy71v5cifzax4cwjp";
};

buildInputs = [ erlang ];