gitui: migrate to by-name
This commit is contained in:
parent
55995103d3
commit
bd66293010
@ -6,8 +6,7 @@
|
||||
, openssl
|
||||
, pkg-config
|
||||
, xclip
|
||||
, AppKit
|
||||
, Security
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
@ -27,7 +26,11 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
buildInputs = [ openssl ]
|
||||
++ lib.optional stdenv.isLinux xclip
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv Security AppKit ];
|
||||
++ lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
darwin.apple_sdk.frameworks.AppKit
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# The cargo config overrides linkers for some targets, breaking the build
|
@ -2528,10 +2528,6 @@ with pkgs;
|
||||
|
||||
gittyup = libsForQt5.callPackage ../applications/version-management/gittyup { };
|
||||
|
||||
gitui = callPackage ../applications/version-management/gitui {
|
||||
inherit (darwin.apple_sdk.frameworks) Security AppKit;
|
||||
};
|
||||
|
||||
gitweb = callPackage ../applications/version-management/gitweb { };
|
||||
|
||||
glab = callPackage ../applications/version-management/glab { };
|
||||
|
Loading…
Reference in New Issue
Block a user