perlPackages.SQLTranslator: fix scripts shebang

(cherry picked from commit cc4f71d619ddf6d33da203af3881da9a28b5421e)
This commit is contained in:
Stig Palmquist 2021-07-25 04:10:33 +02:00 committed by github-actions[bot]
parent 935e4fafbb
commit f344d8ba41
1 changed files with 12 additions and 0 deletions

View File

@ -18804,6 +18804,18 @@ let
};
buildInputs = [ FileShareDirInstall JSONMaybeXS TestDifferences TestException XMLWriter YAML ];
propagatedBuildInputs = [ CarpClan DBI FileShareDir Moo PackageVariant ParseRecDescent TryTiny ];
postPatch = ''
patchShebangs script
'';
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
postInstall = lib.optionalString stdenv.isDarwin ''
for file in $out/bin/*; do
shortenPerlShebang $file
done
'';
meta = {
description = "SQL DDL transformations and more";
license = with lib.licenses; [ artistic1 gpl1Plus ];