Skip to content

Commit

Permalink
Merge pull request #9263 from flokli/update-stringly-typed-configuref…
Browse files Browse the repository at this point in the history
…lags

[2.3-maintenance] Convert stringly-typed configureFlags to lists of strings
  • Loading branch information
edolstra committed Oct 31, 2023
2 parents 5757632 + a4cafa6 commit 791af78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ let

buildInputs = tarballDeps ++ buildDeps ++ propagatedDeps;

configureFlags = "--enable-gc";
configureFlags = [ "--enable-gc" ];

postUnpack = ''
(cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files
Expand Down Expand Up @@ -111,10 +111,10 @@ let
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;

configureFlags = ''
--with-dbi=${perlPackages.DBI}/${pkgs.perl.libPrefix}
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${pkgs.perl.libPrefix}
'';
configureFlags = [
"--with-dbi=${perlPackages.DBI}/${pkgs.perl.libPrefix}"
"--with-dbd-sqlite=${perlPackages.DBDSQLite}/${pkgs.perl.libPrefix}"
];

enableParallelBuilding = true;

Expand Down

0 comments on commit 791af78

Please sign in to comment.