summary refs log tree commit diff
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-21 14:49:30 +0200
committerGitHub <noreply@github.com>2021-08-21 14:49:30 +0200
commitb2573f352e36ac5a5977a77b6a9329d86fe62ac3 (patch)
treeca99e4f86e326224b17a12f76e7c37cd23758544 /doc/languages-frameworks
parentd4a728969f2adba78b78d12e0be6de1b63189f6b (diff)
parent8f94a33b38fdd8b5e1c3e57303855364887ec332 (diff)
downloadnixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar.gz
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar.bz2
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar.lz
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar.xz
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.tar.zst
nixpkgs-b2573f352e36ac5a5977a77b6a9329d86fe62ac3.zip
Merge pull request #134578 from smancill/phase-hooks-use-strings
treewide: ensure pre/post phase hooks are strings
Diffstat (limited to 'doc/languages-frameworks')
-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 dcb7dcb77b6..c992b9d658b 100644
--- a/doc/languages-frameworks/perl.section.md
+++ b/doc/languages-frameworks/perl.section.md
@@ -122,7 +122,7 @@ ImageExifTool = buildPerlPackage {
   };
 
   buildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
-  postInstall = lib.optional stdenv.isDarwin ''
+  postInstall = lib.optionalString stdenv.isDarwin ''
     shortenPerlShebang $out/bin/exiftool
   '';
 };