Merge pull request #259185 from r-ryantm/auto-update/rtx

rtx: 2023.9.0 -> 2023.10.1

authored by

Pierre Bourdon and committed by
GitHub
66da72cc b0084955

+6 -5
+5 -4
pkgs/tools/misc/rtx/default.nix
··· 10 , openssl 11 , direnv 12 , Security 13 }: 14 15 rustPlatform.buildRustPackage rec { 16 pname = "rtx"; 17 - version = "2023.9.0"; 18 19 src = fetchFromGitHub { 20 owner = "jdxcode"; 21 repo = "rtx"; 22 rev = "v${version}"; 23 - hash = "sha256-TH2JC+Cjw+ed1O33QKGq+lonIKlu6pHuY1jtrZh/FMM="; 24 }; 25 26 - cargoHash = "sha256-zJVCzVgwU9lR3E61w+71eUd7Au9LmJcbHtgLvzTj7r4="; 27 28 nativeBuildInputs = [ installShellFiles pkg-config ]; 29 - buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 30 31 postPatch = '' 32 patchShebangs --build ./test/data/plugins/**/bin/* ./src/fake_asdf.rs ./src/cli/reshim.rs
··· 10 , openssl 11 , direnv 12 , Security 13 + , SystemConfiguration 14 }: 15 16 rustPlatform.buildRustPackage rec { 17 pname = "rtx"; 18 + version = "2023.10.1"; 19 20 src = fetchFromGitHub { 21 owner = "jdxcode"; 22 repo = "rtx"; 23 rev = "v${version}"; 24 + hash = "sha256-E0jBTnfp8asLC2V8TtYSCh6fTxqkFwCMZjsjjBKEN0s="; 25 }; 26 27 + cargoHash = "sha256-n/GxC5wDfhPboynFu8S1f9+kNDVmcKoSHaT96khyi2Q="; 28 29 nativeBuildInputs = [ installShellFiles pkg-config ]; 30 + buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ]; 31 32 postPatch = '' 33 patchShebangs --build ./test/data/plugins/**/bin/* ./src/fake_asdf.rs ./src/cli/reshim.rs
+1 -1
pkgs/top-level/all-packages.nix
··· 18467 asdf-vm = callPackage ../tools/misc/asdf-vm { }; 18468 18469 rtx = callPackage ../tools/misc/rtx { 18470 - inherit (darwin.apple_sdk.frameworks) Security; 18471 }; 18472 18473 ### DEVELOPMENT / TOOLS
··· 18467 asdf-vm = callPackage ../tools/misc/asdf-vm { }; 18468 18469 rtx = callPackage ../tools/misc/rtx { 18470 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration; 18471 }; 18472 18473 ### DEVELOPMENT / TOOLS