rs-tftpd: 0.4.0 -> 0.5.0 (#448225)

This commit is contained in:
Adam C. Stephens
2025-10-03 19:46:04 +00:00
committed by GitHub
+7 -6
View File
@@ -5,18 +5,18 @@
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rs-tftpd";
version = "0.4.0";
version = "0.5.0";
src = fetchFromGitHub {
owner = "altugbakan";
repo = "rs-tftpd";
rev = version;
hash = "sha256-iUoIBQTMC+oXsuZcnSp1K4uFuETKTcfaW6+fBa5PQw8=";
tag = finalAttrs.version;
hash = "sha256-YxXUwbzkuxnRrri49DhjvO/LJRWWtFutLbg151GnT5M=";
};
cargoHash = "sha256-ZED5+WnOALLXAW/l/QMFKWco6kJnz4rFv8nfp00HS78=";
cargoHash = "sha256-FKwQr4u7lVN12XPyDus7QoIpthYbT84SFkMJvLTqXRU=";
buildFeatures = [ "client" ];
@@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "TFTP Server Daemon implemented in Rust";
homepage = "https://github.com/altugbakan/rs-tftpd";
changelog = "https://github.com/altugbakan/rs-tftpd/releases/tag/${finalAttrs.version}";
license = licenses.mit;
maintainers = with maintainers; [
adamcstephens
@@ -32,4 +33,4 @@ rustPlatform.buildRustPackage rec {
];
mainProgram = "tftpd";
};
}
})