From 8c39346c75015349818e532ccc81a9292e5d27ba Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 6 Jun 2024 12:21:25 +0200 Subject: [PATCH] frankenphp: 1.1.5 -> 1.2.0 diff: https://github.com/dunglas/frankenphp/compare/v1.1.5..v1.2.0 changelog: https://github.com/dunglas/frankenphp/releases/tag/v1.2.0 --- pkgs/by-name/fr/frankenphp/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/fr/frankenphp/package.nix b/pkgs/by-name/fr/frankenphp/package.nix index 45b0fed97129..ce9bcb4d0898 100644 --- a/pkgs/by-name/fr/frankenphp/package.nix +++ b/pkgs/by-name/fr/frankenphp/package.nix @@ -27,7 +27,7 @@ let pieBuild = stdenv.hostPlatform.isMusl; in buildGoModule rec { pname = "frankenphp"; - version = "1.1.5"; + version = "1.2.0"; src = fetchFromGitHub { owner = "dunglas"; @@ -54,7 +54,7 @@ in buildGoModule rec { "-s" "-w" "-X 'github.com/caddyserver/caddy/v2.CustomVersion=FrankenPHP ${version} PHP ${phpUnwrapped.version} Caddy'" - # pie mode is only available with pkgsMusl, it also automaticaly add -buildmode=pie to $GOFLAGS + # pie mode is only available with pkgsMusl, it also automatically add -buildmode=pie to $GOFLAGS ] ++ (lib.optional pieBuild [ "-static-pie" ]); preBuild = '' @@ -96,13 +96,13 @@ in buildGoModule rec { }; }; - meta = with lib; { + meta = { changelog = "https://github.com/dunglas/frankenphp/releases/tag/v${version}"; description = "The modern PHP app server"; homepage = "https://github.com/dunglas/frankenphp"; - license = licenses.mit; + license = lib.licenses.mit; mainProgram = "frankenphp"; - maintainers = with maintainers; [ gaelreyrol shyim ]; - platforms = platforms.linux ++ platforms.darwin; + maintainers = with lib.maintainers; [ gaelreyrol shyim ]; + platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }