gdlv: init at 1.8.0

This commit is contained in:
Manuel Mendez 2022-07-25 17:12:02 -04:00 committed by Sandro Jäckel
parent 403bfc5a5c
commit a1d5c22e95
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, buildGoModule, fetchFromGitHub, OpenGL }:
buildGoModule rec {
pname = "gdlv";
version = "1.8.0";
src = fetchFromGitHub {
owner = "aarzilli";
repo = "gdlv";
rev = "v${version}";
sha256 = "sha256-G1/Wbz836yfGZ/1ArICrNbWU6eh4SHXDmo4FKkjUszY=";
};
vendorSha256 = null;
subPackages = ".";
buildInputs = lib.optionals stdenv.isDarwin [ OpenGL ];
meta = with lib; {
description = "GUI frontend for Delve";
homepage = "https://github.com/aarzilli/gdlv";
maintainers = with maintainers; [ mmlb ];
license = licenses.gpl3;
};
}

View file

@ -24844,6 +24844,10 @@ with pkgs;
ginkgo = callPackage ../development/tools/ginkgo { };
gdlv = callPackage ../development/tools/gdlv {
inherit (darwin.apple_sdk.frameworks) OpenGL;
};
go-bindata = callPackage ../development/tools/go-bindata { };
go-bindata-assetfs = callPackage ../development/tools/go-bindata-assetfs { };