diff --git a/pkgs/servers/firebird/default.nix b/pkgs/servers/firebird/default.nix index 7e7387819ab0..2fc31f9e49c9 100644 --- a/pkgs/servers/firebird/default.nix +++ b/pkgs/servers/firebird/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, libedit, autoreconfHook271, zlib, unzip, libtommath, libtomcrypt, icu, superServer ? false }: +{ lib, stdenv, fetchFromGitHub, libedit, autoreconfHook271, zlib, unzip, libtommath, libtomcrypt, icu73, superServer ? false }: let base = { pname = "firebird"; @@ -10,14 +10,14 @@ let base = { changelog = "https://github.com/FirebirdSQL/firebird/blob/master/CHANGELOG.md"; license = [ "IDPL" "Interbase-1.0" ]; platforms = platforms.linux; - maintainers = with maintainers; [ marcweber ]; + maintainers = with maintainers; [ bbenno marcweber ]; }; nativeBuildInputs = [ autoreconfHook271 ]; - buildInputs = [ libedit icu ]; + buildInputs = [ libedit icu73 ]; - LD_LIBRARY_PATH = lib.makeLibraryPath [ icu ]; + LD_LIBRARY_PATH = lib.makeLibraryPath [ icu73 ]; configureFlags = [ "--with-system-editline" @@ -55,13 +55,13 @@ let base = { }); firebird_3 = stdenv.mkDerivation (base // rec { - version = "3.0.10"; + version = "3.0.12"; src = fetchFromGitHub { owner = "FirebirdSQL"; repo = "firebird"; rev = "v${version}"; - sha256 = "sha256-PT2b3989n/7xLGNREWinEey9SGnAXShITdum+yiFlHY="; + hash = "sha256-po8tMrOahfwayVXa7Eadr9+ZEmZizHlCmxi094cOJSY="; }; buildInputs = base.buildInputs ++ [ zlib libtommath ];