Skip to content

Commit

Permalink
unit: 1.17.0 -> 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Izorkin committed May 30, 2020
1 parent f75d629 commit ea956bb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/servers/http/unit/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ let
php74-unit = php74.override phpConfig;

in stdenv.mkDerivation rec {
version = "1.17.0";
version = "1.18.0";
pname = "unit";

src = fetchFromGitHub {
owner = "nginx";
repo = "unit";
rev = version;
sha256 = "1q3659vw8rxv4fk7ljkjav8ga72sb3arljfxcqw8b080f9hvi7hh";
sha256 = "0r2l3ra63qjjbpjzrmx75jp9fvz83yis4j3qxqdnmxm77psykwy8";
};

nativeBuildInputs = [ which ];
Expand All @@ -49,7 +49,7 @@ in stdenv.mkDerivation rec {
++ optionals withPython3 [ python3 ncurses ]
++ optional withPHP72 php72-unit
++ optional withPHP73 php73-unit
++ optional withPHP73 php74-unit
++ optional withPHP74 php74-unit
++ optional withPerl528 perl528
++ optional withPerl530 perl530
++ optional withPerldevel perldevel
Expand All @@ -68,8 +68,8 @@ in stdenv.mkDerivation rec {
++ optional withDebug "--debug";

postConfigure = ''
${optionalString withPython2 "./configure python --module=python2 --config=${python2}/bin/python2-config --lib-path=${python2}/lib"}
${optionalString withPython3 "./configure python --module=python3 --config=${python3}/bin/python3-config --lib-path=${python3}/lib"}
${optionalString withPython2 "./configure python --module=python2 --config=python2-config --lib-path=${python2}/lib"}
${optionalString withPython3 "./configure python --module=python3 --config=python3-config --lib-path=${python3}/lib"}
${optionalString withPHP72 "./configure php --module=php72 --config=${php72-unit.unwrapped.dev}/bin/php-config --lib-path=${php72-unit}/lib"}
${optionalString withPHP73 "./configure php --module=php73 --config=${php73-unit.unwrapped.dev}/bin/php-config --lib-path=${php73-unit}/lib"}
${optionalString withPHP74 "./configure php --module=php74 --config=${php74-unit.unwrapped.dev}/bin/php-config --lib-path=${php74-unit}/lib"}
Expand Down

0 comments on commit ea956bb

Please sign in to comment.