firebird: 4.0.0rc1 -> 4.0.0

This commit is contained in:
superherointj 2021-05-23 10:27:54 -03:00
parent d7555732bc
commit 69ccec4c72
2 changed files with 7 additions and 7 deletions

View file

@ -9,7 +9,7 @@ let base = {
changelog = "https://github.com/FirebirdSQL/firebird/blob/master/CHANGELOG.md"; changelog = "https://github.com/FirebirdSQL/firebird/blob/master/CHANGELOG.md";
license = [ "IDPL" "Interbase-1.0" ]; license = [ "IDPL" "Interbase-1.0" ];
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ marcweber ]; maintainers = with maintainers; [ marcweber superherointj ];
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
@ -29,7 +29,7 @@ let base = {
runHook postInstall runHook postInstall
''; '';
}; in { }; in rec {
firebird_2_5 = stdenv.mkDerivation (base // rec { firebird_2_5 = stdenv.mkDerivation (base // rec {
version = "2.5.9"; version = "2.5.9";
@ -69,16 +69,17 @@ let base = {
}); });
firebird_4 = stdenv.mkDerivation (base // rec { firebird_4 = stdenv.mkDerivation (base // rec {
version = "4.0.0-rc1"; version = "4.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FirebirdSQL"; owner = "FirebirdSQL";
repo = "firebird"; repo = "firebird";
rev = "T4_0_0_RC1"; rev = "v${version}";
sha256 = "sha256-FLaRePosF5dtJ+fmrfvzkE6wawC9Z9YLhT/ZWkwWXb4="; sha256 = "sha256-a4ex19FMfiJsUEhWUYd2YXKgJ24Jnpoab2t6x9sUuyQ=";
}; };
buildInputs = base.buildInputs ++ [ zlib unzip libtommath libtomcrypt ]; buildInputs = base.buildInputs ++ [ zlib unzip libtommath libtomcrypt ];
}); });
firebird = firebird_4;
} }

View file

@ -18980,8 +18980,7 @@ in
fingerd_bsd = callPackage ../servers/fingerd/bsd-fingerd { }; fingerd_bsd = callPackage ../servers/fingerd/bsd-fingerd { };
inherit (callPackages ../servers/firebird { }) firebird_4 firebird_3 firebird_2_5; inherit (callPackages ../servers/firebird { }) firebird_4 firebird_3 firebird_2_5 firebird;
firebird = firebird_3;
freeradius = callPackage ../servers/freeradius { }; freeradius = callPackage ../servers/freeradius { };