diff options
author | figsoda | 2022-12-03 13:54:25 -0500 |
---|---|---|
committer | figsoda | 2022-12-03 13:54:25 -0500 |
commit | 352e063a03263e0e42bf3523b8cb3f4ddc35d192 (patch) | |
tree | 464dff5835b82b87a45187c554089f835a480ac2 | |
parent | 94306da1a41ff6f0723aa4ff9232847a1b45dc86 (diff) |
simple-http-server: 0.6.3 -> 0.6.5
Diff: https://github.com/TheWaWaR/simple-http-server/compare/v0.6.3...v0.6.5 Changelog: https://github.com/TheWaWaR/simple-http-server/tree/v0.6.5
-rw-r--r-- | pkgs/servers/simple-http-server/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/simple-http-server/default.nix b/pkgs/servers/simple-http-server/default.nix index 48ed6d78904d..769093269abf 100644 --- a/pkgs/servers/simple-http-server/default.nix +++ b/pkgs/servers/simple-http-server/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "simple-http-server"; - version = "0.6.3"; + version = "0.6.5"; src = fetchFromGitHub { owner = "TheWaWaR"; repo = pname; rev = "v${version}"; - sha256 = "sha256-qhYsfbzEBbWii4r/G0trU7XiAMPrX/guRshyZE2xeJk="; + sha256 = "sha256-9wssSegekRBUXxpru5WGGu6BLX6BFEgV0QliNJToRFg="; }; - cargoSha256 = "sha256-aldAez28SZM4A8niIHk85pKeRzpxaZiQhV9Ch5dyblI="; + cargoSha256 = "sha256-P8Zr5KTjXD0qHkf6QfyfN39PjokpZUfywhzVjIO5rE8="; nativeBuildInputs = [ pkg-config ]; @@ -23,6 +23,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Simple HTTP server in Rust"; homepage = "https://github.com/TheWaWaR/simple-http-server"; + changelog = "https://github.com/TheWaWaR/simple-http-server/tree/v${version}"; license = licenses.mit; maintainers = with maintainers; [ figsoda mephistophiles ]; }; |