From 352e063a03263e0e42bf3523b8cb3f4ddc35d192 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sat, 3 Dec 2022 13:54:25 -0500 Subject: [PATCH] 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 --- pkgs/servers/simple-http-server/default.nix | 7 ++++--- 1 file 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 ]; };