jwt-hack: 2.5.0 -> 2.6.0

Changelog: https://github.com/hahwul/jwt-hack/releases/tag/v2.6.0
This commit is contained in:
Fabian Affolter
2026-06-08 00:53:55 +02:00
parent 7c2eb59cff
commit ac6f5573a1
2 changed files with 7 additions and 2594 deletions
-2577
View File
File diff suppressed because it is too large Load Diff
+7 -17
View File
@@ -1,37 +1,27 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "jwt-hack";
version = "2.5.0";
version = "2.6.0";
src = fetchFromGitHub {
owner = "hahwul";
repo = "jwt-hack";
tag = "v${finalAttrs.version}";
hash = "sha256-kutt5VhMY/YIXBpVZTg/xAwa9d+J5ypfLi5aLakjfaY=";
hash = "sha256-C/K4AG+qQwgo58EwN+k3Bys9qgV59xfRNVCtZmjtcRM=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
cargoHash = "sha256-0WS8+6wFpWWz6jqPdr5F4CURA3sHrKa2vnbDCnBF0Lo=";
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
buildInputs = [ openssl ];
env.OPENSSL_NO_VENDOR = 1;