rs-tftpd: 0.3.3 -> 0.4.0 (#407599)

authored by

Adam C. Stephens and committed by
GitHub
1aa41c4f 5dfd04a7

+7 -4
+7 -4
pkgs/by-name/rs/rs-tftpd/package.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "rs-tftpd"; 10 - version = "0.3.3"; 11 12 src = fetchFromGitHub { 13 owner = "altugbakan"; 14 repo = "rs-tftpd"; 15 rev = version; 16 - hash = "sha256-qazPEzLMIlnqKTayurZgNJ8TLLdB4qNO88tKMoh6VVI="; 17 }; 18 19 useFetchCargoVendor = true; 20 - cargoHash = "sha256-xnvruSfrd2RWgWjV+mqMciGY/L2ynJrYW/j+P6rphEs="; 21 22 buildFeatures = [ "client" ]; 23 ··· 27 description = "TFTP Server Daemon implemented in Rust"; 28 homepage = "https://github.com/altugbakan/rs-tftpd"; 29 license = licenses.mit; 30 - maintainers = with maintainers; [ matthewcroughan ]; 31 mainProgram = "tftpd"; 32 }; 33 }
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "rs-tftpd"; 10 + version = "0.4.0"; 11 12 src = fetchFromGitHub { 13 owner = "altugbakan"; 14 repo = "rs-tftpd"; 15 rev = version; 16 + hash = "sha256-iUoIBQTMC+oXsuZcnSp1K4uFuETKTcfaW6+fBa5PQw8="; 17 }; 18 19 useFetchCargoVendor = true; 20 + cargoHash = "sha256-ZED5+WnOALLXAW/l/QMFKWco6kJnz4rFv8nfp00HS78="; 21 22 buildFeatures = [ "client" ]; 23 ··· 27 description = "TFTP Server Daemon implemented in Rust"; 28 homepage = "https://github.com/altugbakan/rs-tftpd"; 29 license = licenses.mit; 30 + maintainers = with maintainers; [ 31 + adamcstephens 32 + matthewcroughan 33 + ]; 34 mainProgram = "tftpd"; 35 }; 36 }