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

Commits on Jun 20, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    elseym Simon Waibl
    Copy the full SHA
    7bc57d3 View commit details
  2. Merge pull request #63549 from thefloweringash/sensu-go-update

    sensu-go: 5.9.0 -> 5.10.0
    marsam authored Jun 20, 2019
    Copy the full SHA
    d85b0f5 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/servers/monitoring/sensu-go/default.nix
6 changes: 3 additions & 3 deletions pkgs/servers/monitoring/sensu-go/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@ let
generic = { subPackages, pname, postInstall ? "" }:
buildGoPackage rec {
inherit pname;
version = "5.9.0";
shortRev = "078f625"; # for internal version info
version = "5.10.0";
shortRev = "c7551ba"; # for internal version info

goPackagePath = "github.com/sensu/sensu-go";

src = fetchFromGitHub {
owner = "sensu";
repo = "sensu-go";
rev = version;
sha256 = "1rivnq7m4p44zz1fl46j06aakb0yjsjb3mjqyfq4r0235xr01ajw";
sha256 = "1hma54mdh150d51rwz5csqbn0h24qk6hydjmib68j7zd7kp92yb5";
};

inherit subPackages postInstall;