about summary refs log tree commit diff
path: root/doc/languages-frameworks/perl.section.md
diff options
context:
space:
mode:
authorJakub Okoński <jakub@okonski.org>2023-05-10 18:34:17 +0200
committerJakub Okoński <jakub@okonski.org>2023-05-10 18:34:17 +0200
commit9948a0d6c96171e26d8012bec9df79fbdc46581c (patch)
treead18802ceeb71d0797c579726d5358331f275bca /doc/languages-frameworks/perl.section.md
parent9846599a67e75adf907389a487b111cdd6a5436d (diff)
doc: update shortenPerlShebang example to use nativeBuildInputs
Diffstat (limited to 'doc/languages-frameworks/perl.section.md')
-rw-r--r--doc/languages-frameworks/perl.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/perl.section.md b/doc/languages-frameworks/perl.section.md
index 91d3a091c0ae2..c188e228112cd 100644
--- a/doc/languages-frameworks/perl.section.md
+++ b/doc/languages-frameworks/perl.section.md
@@ -118,7 +118,7 @@ ImageExifTool = buildPerlPackage {
     hash = "sha256-vOhB/FwQMC8PPvdnjDvxRpU6jAZcC6GMQfc0AH4uwKg=";
   };
 
-  buildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
+  nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
   postInstall = lib.optionalString stdenv.isDarwin ''
     shortenPerlShebang $out/bin/exiftool
   '';