gdlv: Update 1.10.0 -> 1.12.0
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
This commit is contained in:
parent
3c841d740f
commit
251fcfba61
@ -10,25 +10,24 @@
|
|||||||
}:
|
}:
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "gdlv";
|
pname = "gdlv";
|
||||||
version = "1.10.0";
|
version = "1.12.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "aarzilli";
|
owner = "aarzilli";
|
||||||
repo = "gdlv";
|
repo = "gdlv";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-OPsQOFwV6jIX4ZOVwJmpTeQUr/zkfkqCr86HmPhYarI=";
|
hash = "sha256-6NU7bhURdXM4EjVnsXVf9XFOUgHyVEI0kr15q9OnUTQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorHash = null;
|
||||||
|
subPackages = ".";
|
||||||
|
|
||||||
preBuild =
|
preBuild =
|
||||||
lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11.0")
|
lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11.0")
|
||||||
''
|
''
|
||||||
export MACOSX_DEPLOYMENT_TARGET=10.15
|
export MACOSX_DEPLOYMENT_TARGET=10.15
|
||||||
'';
|
'';
|
||||||
|
|
||||||
vendorHash = null;
|
|
||||||
|
|
||||||
subPackages = ".";
|
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
AppKit
|
AppKit
|
||||||
CoreGraphics
|
CoreGraphics
|
||||||
|
Loading…
Reference in New Issue
Block a user