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

Commits on Jun 6, 2019

  1. pulumi-bin: 0.17.8 -> 0.17.14 (#62507)

    * pulumi-bin: 0.17.8 -> 0.17.14
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/pulumi/versions
    
    * pulumi-bin: fix Darwin hash for v0.17.14
    r-ryantm authored and c0bw3b committed Jun 6, 2019
    Copy the full SHA
    1579a5b View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/admin/pulumi/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/admin/pulumi/default.nix
Original file line number Diff line number Diff line change
@@ -4,17 +4,17 @@ with lib;

let

version = "0.17.8";
version = "0.17.14";

# switch the dropdown to “manual” on https://pulumi.io/quickstart/install.html # TODO: update script
pulumiArchPackage = {
"x86_64-linux" = {
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-linux-x64.tar.gz";
sha256 = "1c4fyzwp00r5xcn5ri1s47jmvl646hfsmiqmczdndaf14ib1xszl";
sha256 = "0pqmmd0p000qax5y1z83h6k292yad0cm8i1s4kb4z2kddn0p9nnv";
};
"x86_64-darwin" = {
url = "https://get.pulumi.com/releases/sdk/pulumi-v${version}-darwin-x64.tar.gz";
sha256 = "0fxs5bmssbhb9q7adsr8ybkbykazzv2q5dn0zdl8xi90mhpd1lgv";
sha256 = "0cgc41l8jf7raqqkdpn3yapvllmr43v17wly0rxqk47csh8905hd";
};
};