gdlv: Convert to by-name

This commit is contained in:
Manuel Mendez 2024-09-03 14:06:13 -04:00
parent 8c0e76ad14
commit 3c841d740f
2 changed files with 8 additions and 8 deletions

View File

@ -3,10 +3,10 @@
stdenv,
buildGoModule,
fetchFromGitHub,
Foundation,
CoreGraphics,
Metal,
AppKit,
CoreGraphics,
Foundation,
Metal,
}:
buildGoModule rec {
pname = "gdlv";
@ -30,10 +30,10 @@ buildGoModule rec {
subPackages = ".";
buildInputs = lib.optionals stdenv.isDarwin [
Foundation
CoreGraphics
Metal
AppKit
CoreGraphics
Foundation
Metal
];
meta = with lib; {

View File

@ -26724,8 +26724,8 @@ with pkgs;
ginkgo = callPackage ../development/tools/ginkgo { };
gdlv = darwin.apple_sdk_11_0.callPackage ../development/tools/gdlv {
inherit (darwin.apple_sdk_11_0.frameworks) Foundation CoreGraphics Metal AppKit;
gdlv = callPackage ../by-name/gd/gdlv/package.nix {
inherit (darwin.apple_sdk_11_0.frameworks) AppKit CoreGraphics Foundation Metal;
};
go-bindata = callPackage ../development/tools/go-bindata { };