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

Commits on Mar 9, 2019

  1. heroku: 7.19.4 -> 7.22.4

    marsam committed Mar 9, 2019
    Copy the full SHA
    d59deb4 View commit details

Commits on Mar 11, 2019

  1. Merge pull request #57117 from marsam/update-heroku

    heroku: 7.19.4 -> 7.22.4
    peterhoeg authored Mar 11, 2019
    Copy the full SHA
    126c2b0 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/heroku/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/heroku/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, lib, fetchurl, makeWrapper, nodejs }:

stdenv.mkDerivation rec {
name = "heroku-${version}";
version = "7.19.4";
pname = "heroku";
version = "7.22.4";

src = fetchurl {
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
sha256 = "0l30acam8q114imgz7kzpfp6z1zwpg2sm1ygnjjdjd2bw62bmv3a";
sha256 = "067kvkdn7yvzb3ws6yjsfbypww914fclhnxrh2dw1hc6cazfgmqp";
};

nativeBuildInputs = [ makeWrapper ];