From b6202cbbbe8f76a2b842adc1f532357ea2868e2b Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Fri, 2 Feb 2024 01:30:14 +0100 Subject: [PATCH] fix typo Co-authored-by: Olivia Crain --- 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 e38a44c..edba6d8 100644 --- a/source/tutorials/packaging-existing-software.md +++ b/source/tutorials/packaging-existing-software.md @@ -77,7 +77,7 @@ stdenv.mkDerivation { ``` -Next, you will declare a dependency the [latest version](https://ftp.gnu.org/gnu/hello/hello-2.12.1.tar.gz) of `hello` and instruct Nix to use `fetchzip`. +Next, you will declare a dependency on the [latest version](https://ftp.gnu.org/gnu/hello/hello-2.12.1.tar.gz) of `hello` and instruct Nix to use `fetchzip`. It takes the URL to the file and a [SHA256 hash](https://en.wikipedia.org/wiki/SHA-2) of its contents. :::{note}