From 99063868c35eb78b5b0e35200f140b7fd5368a17 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 11 Jun 2023 12:20:27 -0700 Subject: [PATCH] cargo-watch: update the homepage link --- pkgs/development/tools/rust/cargo-watch/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-watch/default.nix b/pkgs/development/tools/rust/cargo-watch/default.nix index 3e2d10e769c1..2ed8f739a570 100644 --- a/pkgs/development/tools/rust/cargo-watch/default.nix +++ b/pkgs/development/tools/rust/cargo-watch/default.nix @@ -1,4 +1,13 @@ -{ stdenv, lib, rustPlatform, fetchFromGitHub, Cocoa, CoreServices, Foundation, rust, libiconv }: +{ stdenv +, lib +, rustPlatform +, fetchFromGitHub +, Cocoa +, CoreServices +, Foundation +, rust +, libiconv +}: rustPlatform.buildRustPackage rec { pname = "cargo-watch"; @@ -23,7 +32,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "A Cargo subcommand for watching over Cargo project's source"; - homepage = "https://github.com/passcod/cargo-watch"; + homepage = "https://github.com/watchexec/cargo-watch"; license = licenses.cc0; maintainers = with maintainers; [ xrelkd ivan ]; };