about summary refs log tree commit diff
path: root/doc/stdenv/stdenv.chapter.md
diff options
context:
space:
mode:
authornicoo <nicoo@mur.at>2023-09-13 13:22:37 +0000
committernicoo <nicoo@mur.at>2023-09-13 17:24:49 +0000
commitfe138d36c9a23de3490a3bfa2f9dda8bf56427b9 (patch)
tree2ce288033caa438594dbf423561870db6c7c41be /doc/stdenv/stdenv.chapter.md
parenta3f84440cb417512252a92b9573c51b36218762d (diff)
doc: Replace `sha256` with `hash` where appropriate
Diffstat (limited to 'doc/stdenv/stdenv.chapter.md')
-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 fe0f5daf7a079..0526f8aa9c6c2 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 ];