From cebc3ec358751b7cb59bfb8282168fff9f215839 Mon Sep 17 00:00:00 2001 From: Pico Geyer Date: Sun, 17 Nov 2024 22:19:25 +0200 Subject: [PATCH] Update packaging-existing-software.md Minor clarification of which repository is being referred to by making it a link. --- source/tutorials/packaging-existing-software.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/packaging-existing-software.md b/source/tutorials/packaging-existing-software.md index 614573bba..c40fa9bf4 100644 --- a/source/tutorials/packaging-existing-software.md +++ b/source/tutorials/packaging-existing-software.md @@ -444,7 +444,7 @@ In case all else fails, it helps to become familiar with searching the [Nixpkgs To find name assignments in the source, search for `" ="`. For example, these are the search results for [`"x11 = "`](https://github.com/search?q=repo%3ANixOS%2Fnixpkgs+%22x11+%3D%22&type=code) or [`"libx11 ="`](https://github.com/search?q=repo%3ANixOS%2Fnixpkgs+%22libx11+%3D%22&type=code) on Github. -Or fetch a clone of the repository and search the code locally. +Or fetch a clone of the [repository](https://github.com/nixos/nixpkgs) and search the code locally. Start a shell that makes the required tools available – `git` for version control, and `rg` for code search (provided by the [`ripgrep` package](https://search.nixos.org/packages?show=ripgrep)): ```console