Skip to content

Commit

Permalink
gdlv: Convert to by-name
Browse files Browse the repository at this point in the history
  • Loading branch information
mmlb committed Sep 3, 2024
1 parent 8c0e76a commit 3c841d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
stdenv,
buildGoModule,
fetchFromGitHub,
Foundation,
AppKit,
CoreGraphics,
Foundation,
Metal,
AppKit,
}:
buildGoModule rec {
pname = "gdlv";
Expand All @@ -30,10 +30,10 @@ buildGoModule rec {
subPackages = ".";

buildInputs = lib.optionals stdenv.isDarwin [
Foundation
AppKit
CoreGraphics
Foundation
Metal
AppKit
];

meta = with lib; {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 3c841d7

Please sign in to comment.