Skip to content

Commit

Permalink
nushellPlugins: hash fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
happysalada authored and Yt committed Sep 26, 2023
1 parent 00a0c4c commit 4bae9b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/shells/nushell/plugins/formats.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ rustPlatform.buildRustPackage {
inherit pname;
version = "0.85.0";
src = nushell.src;
cargoHash = "sha256-OKtktjBOujvljAX260TbC2sQWZOiGgU+sXsbYRhGPRM=";
cargoHash = "sha256-WS8VRpJnn/VWS7GUkGowFf51ifUx0SbEZzcoTfx2dp0=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ IOKit Foundation ];
buildInputs = lib.optionals stdenv.isDarwin [ IOKit Foundation ];
cargoBuildFlags = [ "--package nu_plugin_formats" ];
doCheck = false;
meta = with lib; {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/shells/nushell/plugins/gstat.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rustPlatform.buildRustPackage {
inherit pname;
version = "0.85.0";
src = nushell.src;
cargoHash = "sha256-Fj70uKYzEKxeZeNrqlwM7ZFJ+K1tz10RqLndrdY40CE=";
cargoHash = "sha256-6luY3SIRRd9vaY9KIJcj8Q974FW0LtAvRjVpdpzkdLo=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
cargoBuildFlags = [ "--package nu_plugin_gstat" ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/shells/nushell/plugins/query.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rustPlatform.buildRustPackage {

src = nushell.src;

cargoHash = "sha256-8iUqOdGWm2kDW72ptlCBIqqe4zjckN09MOQD77kCf5Y=";
cargoHash = "sha256-xyty3GfI+zNkuHs7LYHBctqXUHZ4/MNNcnnfYvI18do=";

buildInputs = lib.optionals stdenv.isDarwin [ IOKit CoreFoundation ];

Expand Down

0 comments on commit 4bae9b1

Please sign in to comment.