From 7af8233309e8b3fb468043dd7c8ade5a02f78411 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 5 Jun 2023 18:01:42 -0400 Subject: [PATCH] rustypaste: 0.10.0 -> 0.10.1 Diff: https://github.com/orhun/rustypaste/compare/v0.10.0...v0.10.1 Changelog: https://github.com/orhun/rustypaste/blob/v0.10.1/CHANGELOG.md --- pkgs/servers/rustypaste/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/rustypaste/default.nix b/pkgs/servers/rustypaste/default.nix index aa520533f9e4..725cf317980e 100644 --- a/pkgs/servers/rustypaste/default.nix +++ b/pkgs/servers/rustypaste/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "rustypaste"; - version = "0.10.0"; + version = "0.10.1"; src = fetchFromGitHub { owner = "orhun"; repo = pname; rev = "v${version}"; - sha256 = "sha256-qzSrxkq63SFcP/sQeORqG9+c+ct/n29jdIFUL9jut0w="; + sha256 = "sha256-WLuMG9gC2kSdyrYa0CNnInjetXph0OL/Jmjskih4tuw="; }; - cargoHash = "sha256-EDnc3P4sIpUyCDSozvaVeWI3y2KWDXKVcnkZ7M3Xx4w="; + cargoHash = "sha256-A651PTooQjITjxCLKPhnFSCxa27uesTOP8ZbAlRbOUk="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices @@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/orhun/rustypaste"; changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ seqizz ]; + maintainers = with maintainers; [ figsoda seqizz ]; }; }