Skip to content

Commit

Permalink
Add image handling support in nix shell.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSiepmann committed Jul 23, 2024
1 parent 2168412 commit ce50646
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
27 changes: 27 additions & 0 deletions Documentation/Changelog/4.1.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
4.1.9
=====

Breaking
--------

Nothing

Features
--------

Nothing

Fixes
-----

Nothing

Tasks
-----

* Add image handling support in nix shell.

Deprecation
-----------

Nothing
6 changes: 3 additions & 3 deletions Tests/Functional/AbstractFunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ protected function setUp(): void
],
'GFX' => [
'processor_enabled' => true,
'processor_path' => '/usr/bin/',
'processor_path_lzw' => '/usr/bin/',
'processor' => 'ImageMagick',
'processor_path' => getenv('GRAPHICSMAGICK_PATH') ?: '/usr/bin/',
'processor_path_lzw' => getenv('GRAPHICSMAGICK_PATH') ?: '/usr/bin/',
'processor' => 'GraphicsMagick',
],
]);

Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'author' => 'Dirk Koritnik, Daniel Siepmann',
'author_email' => '[email protected], [email protected]',
'state' => 'stable',
'version' => '4.0.1',
'version' => '4.1.0',
'constraints' => [
'depends' => [
'typo3' => '',
Expand Down
2 changes: 2 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ in pkgs.mkShell {
composer
];

GRAPHICSMAGICK_PATH = pkgs.lib.makeBinPath [ pkgs.graphicsmagick ] + "/";

shellHook = ''
export typo3DatabaseDriver=pdo_sqlite
'';
Expand Down

0 comments on commit ce50646

Please sign in to comment.