From 1069b54440074ac1c5db0c129c9643f0ca35007c Mon Sep 17 00:00:00 2001 From: Alexander Groleau Date: Tue, 8 Aug 2023 12:22:17 -0500 Subject: [PATCH] Update source/tutorials/learning-journey/packaging-existing-software.md Co-authored-by: Silvan Mosberger --- .../tutorials/learning-journey/packaging-existing-software.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorials/learning-journey/packaging-existing-software.md b/source/tutorials/learning-journey/packaging-existing-software.md index 073d1ff..30e2e46 100644 --- a/source/tutorials/learning-journey/packaging-existing-software.md +++ b/source/tutorials/learning-journey/packaging-existing-software.md @@ -438,7 +438,7 @@ You can see a few warnings which should be corrected in the upstream code, but t Determining from where to source a dependency is currently a somewhat-involved process: it helps to become familiar with searching the `nixpkgs` source for keywords. ::: -You will need the `Xlib.h` headers from the `X11` C package, the Nixpkgs derivation for which is `libX11`, available in the `xorg` package set. The `Xlib` headers in turn live in the `dev` output of `xorg.libX11`. Add this to your derivation's input attribute set and to `buildInputs`: +You will need the `Xlib.h` headers from the `X11` C package, the Nixpkgs derivation for which is `libX11`, available in the `xorg` package set. Add this to your derivation's input attribute set and to `buildInputs`: ```nix # icat.nix