From 7bb28566d23905ed3fdf18f07b0d0db7f2f660f6 Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Sun, 17 Nov 2024 23:02:34 +0100 Subject: [PATCH] packaging-existing-software.md aktualisieren --- 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 c40fa9bf4..79b02a10a 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](https://github.com/nixos/nixpkgs) and search the code locally. +Or fetch a clone of the [Nixpkgs 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