Skip to content

Commit

Permalink
gdlv: Update 1.10.0 -> 1.12.0
Browse files Browse the repository at this point in the history
2024-03-04 / Version 1.12

    Function names in the stacktrace window is shortened by default
    Add next-instruction command
    Make the text in the variables window selectable
    Miscellaneous bug fixes

2023-09-24 / Version 1.11

    Better display of suspended breakpoints
    Add libraries command
    When printing a channel also print a list of goroutines waiting on it
  • Loading branch information
mmlb committed Sep 3, 2024
1 parent 3c841d7 commit 251fcfb
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions pkgs/by-name/gd/gdlv/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,24 @@
}:
buildGoModule rec {
pname = "gdlv";
version = "1.10.0";
version = "1.12.0";

src = fetchFromGitHub {
owner = "aarzilli";
repo = "gdlv";
rev = "v${version}";
hash = "sha256-OPsQOFwV6jIX4ZOVwJmpTeQUr/zkfkqCr86HmPhYarI=";
hash = "sha256-6NU7bhURdXM4EjVnsXVf9XFOUgHyVEI0kr15q9OnUTQ=";
};

vendorHash = null;
subPackages = ".";

preBuild =
lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11.0")
''
export MACOSX_DEPLOYMENT_TARGET=10.15
'';

vendorHash = null;

subPackages = ".";

buildInputs = lib.optionals stdenv.isDarwin [
AppKit
CoreGraphics
Expand Down

0 comments on commit 251fcfb

Please sign in to comment.