{ lib , rustPlatform , fetchFromGitHub , stdenv , darwin }: rustPlatform.buildRustPackage rec { pname = "funzzy"; version = "5cc03fc"; src = fetchFromGitHub { owner = "cristianoliveira"; repo = "funzzy"; rev = "${version}"; hash = "sha256-SuHdKvxhV4Dt+rsyNBCPqMnLfs8wl6pJc8uWXv5b1es="; }; cargoHash = "sha256-qmw62ir/+3o8czTw0Oc9KOTmRSO6WBKJ9MlT7Fnb/pM="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.CoreServices ]; meta = with lib; { description = "A lightweight watcher"; homepage = "https://github.com/cristianoliveira/funzzy"; changelog = "https://github.com/cristianoliveira/funzzy/releases"; license = licenses.mit; maintainers = with maintainers; [ cristianoliveira ]; }; }