buildDhallDirectoryPackage: Stringify src for documentationRoot (#162401)

The `src` is supposed to be a path, but when `documentationRoot` is provided
with a path, it errors with:

generators.mkValueStringDefault: this value is not supported: "<nix-store-path>"

Making it a string fixes this error.

authored by Akshay Mankar and committed by GitHub f30dbd05 676678f2

+1 -2
+1 -2
pkgs/development/interpreters/dhall/build-dhall-directory-package.nix
··· 24 code = "${src}/${file}"; 25 26 } 27 - // lib.optionalAttrs document { documentationRoot = src; } 28 ) 29 ) 30 -
··· 24 code = "${src}/${file}"; 25 26 } 27 + // lib.optionalAttrs document { documentationRoot = "${src}"; } 28 ) 29 )