Skip to content

Commit 14e9edc

Browse files
authored
Merge pull request #489 from tock/dev/2025-01-26-nix-shell-updates
Misc shell.nix updates
2 parents 91df887 + d2c6477 commit 14e9edc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shell.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ let
2020
tockloader = import (pkgs.fetchFromGitHub {
2121
owner = "tock";
2222
repo = "tockloader";
23-
rev = "v1.12.0";
24-
sha256 = "sha256-VgbAKDY/7ZVINDkqSHF7C0zRzVgtk8YG6O/ZmUpsh/g=";
23+
rev = "v1.13.0";
24+
sha256 = "sha256-NRcCPTrLFZLubI5KzMmDkKJdvCdbnW97JMZSmedAQ8s=";
2525
}) { inherit pkgs withUnfreePkgs; };
2626

2727
elf2tab = pkgs.rustPlatform.buildRustPackage rec {
@@ -35,7 +35,7 @@ let
3535
sha256 = "sha256-+VeWLBI6md399Oaumt4pJrOkm0Nz7fmpXN2TjglUE34=";
3636
};
3737

38-
cargoSha256 = "sha256-UHAwk1fBcabRqy7VMhz4aoQuIur+MQshDOhC7KFyGm4=";
38+
cargoHash = "sha256-UHAwk1fBcabRqy7VMhz4aoQuIur+MQshDOhC7KFyGm4=";
3939
};
4040
in
4141
pkgs.mkShell {
@@ -57,7 +57,7 @@ in
5757

5858
shellHook = ''
5959
# TODO: This should be patched into the rpath of the respective libraries!
60-
export LD_LIBRARY_PATH=${pkgs.libusb}/lib:$LD_LIBRARY_PATH
60+
export LD_LIBRARY_PATH=${pkgs.libusb1}/lib:$LD_LIBRARY_PATH
6161
'' + (lib.optionalString withUnfreePkgs ''
6262
export LD_LIBRARY_PATH=${pkgs.segger-jlink}/lib:$LD_LIBRARY_PATH
6363
'');

0 commit comments

Comments
 (0)