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

Commits on Mar 5, 2019

  1. go-symbols: unstable-2018-05-23 -> 0.1.1

    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed Mar 5, 2019
    Copy the full SHA
    8df26ef View commit details
  2. Merge pull request #56901 from vdemeester/update-go-symbols

    go-symbols: unstable-2018-05-23 -> 0.1.1
    Mic92 authored Mar 5, 2019
    Copy the full SHA
    c547c03 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/development/tools/go-symbols/default.nix
7 changes: 3 additions & 4 deletions pkgs/development/tools/go-symbols/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,16 @@

buildGoPackage rec {
name = "go-symbols-${version}";
version = "unstable-2018-05-23";
rev = "953befd75e223f514580fcb698aead0dd6ad3421";
version = "0.1.1";

goPackagePath = "github.com/acroca/go-symbols";
goDeps = ./deps.nix;

src = fetchFromGitHub {
inherit rev;
owner = "acroca";
repo = "go-symbols";
sha256 = "0dwf7w3zypv5brk68n7siakz222jwnhrhkzvwk1iwdffk79gqp3x";
rev = "v${version}";
sha256 = "0yyzw6clndb2r5j9isyd727njs98zzp057v314vfvknsm8g7hqrz";
};

meta = {