summary refs log tree commit diff
path: root/doc/stdenv
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2023-09-15 14:36:49 +0200
committerGitHub <noreply@github.com>2023-09-15 14:36:49 +0200
commit7b737acb4afe4a1222a154746b519eb2f79f6b0e (patch)
tree13f50562eb957436f05fb701462df9cd1136f200 /doc/stdenv
parent11eae28c2778aa34ac0cc2564e503e5d7847001c (diff)
parentfe138d36c9a23de3490a3bfa2f9dda8bf56427b9 (diff)
Merge pull request #254967 from nbraud/sha256-to-hash/top-level
Diffstat (limited to 'doc/stdenv')
-rw-r--r--doc/stdenv/stdenv.chapter.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/stdenv/stdenv.chapter.md b/doc/stdenv/stdenv.chapter.md
index 4e993e898de28..15cb081a04e22 100644
--- a/doc/stdenv/stdenv.chapter.md
+++ b/doc/stdenv/stdenv.chapter.md
@@ -180,7 +180,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://github.com/Solo5/solo5/releases/download/v${version}/solo5-v${version}.tar.gz";
-    sha256 = "sha256-viwrS9lnaU8sTGuzK/+L/PlMM/xRRtgVuK5pixVeDEw=";
+    hash = "sha256-viwrS9lnaU8sTGuzK/+L/PlMM/xRRtgVuK5pixVeDEw=";
   };
 
   nativeBuildInputs = [ makeWrapper pkg-config ];