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: 50e06fc78eb3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a35e363e338
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 25, 2018

  1. heroku: 7.16.0 -> 7.18.2

    * heroku: 7.16.0 -> 7.18.2 (#50096)
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/heroku/versions
    
    * heroku: split native build inputs
    r-ryantm authored and c0bw3b committed Nov 25, 2018
    Copy the full SHA
    0a35e36 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
@@ -2,14 +2,14 @@

stdenv.mkDerivation rec {
name = "heroku-${version}";
version = "7.16.0";
version = "7.18.2";

src = fetchurl {
url = "https://cli-assets.heroku.com/heroku-v${version}/heroku-v${version}.tar.xz";
sha256 = "434573b4773ce7ccbb21b43b19529475d941fa7dd219b01b75968b42e6b62abe";
sha256 = "1dplh3bfin1g0wwbkg76z3xsja4zqj350vrzl8jfw7982saxqywh";
};

buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper ];

dontBuild = true;