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

Commits on Mar 5, 2019

  1. delve: 1.1.0 -> 1.2.0

    Also, move the goPackagePath to `github.com/go-delve/delve` 👼
    
    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed Mar 5, 2019
    Copy the full SHA
    b4764f3 View commit details
  2. Merge pull request #56898 from vdemeester/update-delve

    delve: 1.1.0 -> 1.2.0
    Mic92 authored Mar 5, 2019
    Copy the full SHA
    e97f348 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/delve/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/delve/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoPackage rec {
name = "delve-${version}";
version = "1.1.0";
version = "1.2.0";

goPackagePath = "github.com/derekparker/delve";
goPackagePath = "github.com/go-delve/delve";
excludedPackages = "\\(_fixtures\\|scripts\\|service/test\\)";

src = fetchFromGitHub {
owner = "derekparker";
owner = "go-delve";
repo = "delve";
rev = "v${version}";
sha256 = "0gpsd9hb7r65rn4ml9jzsmy72b8j0id6wik2l48ghzkwjm72rsdz";
sha256 = "1xz1xm0lb1arwm3w2ydq5y5xglq60fc0q46x9xndr3i9j0rm8bxh";
};

meta = with stdenv.lib; {