mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
mariadb_1011: 10.11.15 -> 10.11.18
Changelog: - https://mariadb.com/docs/release-notes/community-server/10.11/10.11.16 - https://mariadb.com/docs/release-notes/community-server/10.11/10.11.17 - https://mariadb.com/docs/release-notes/community-server/10.11/10.11.18
This commit is contained in:
parent
9ce3ec1b92
commit
88ce9b04e9
1 changed files with 16 additions and 4 deletions
|
|
@ -359,8 +359,20 @@ let
|
|||
+ lib.optionalString withStorageMroonga ''
|
||||
mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql
|
||||
''
|
||||
+ lib.optionalString (!stdenv.hostPlatform.isDarwin && lib.versionAtLeast common.version "10.4") ''
|
||||
mv "$out"/OFF/suite/plugins/pam/pam_mariadb_mtr.so "$out"/share/pam/lib/security
|
||||
+
|
||||
lib.optionalString
|
||||
(
|
||||
!stdenv.hostPlatform.isDarwin
|
||||
&& lib.versionAtLeast common.version "10.6"
|
||||
&& lib.versionOlder common.version "10.11"
|
||||
)
|
||||
''
|
||||
mv "$out"/OFF/suite/plugins/pam/pam_mariadb_mtr.so "$out"/share/pam/lib/security
|
||||
''
|
||||
+ lib.optionalString (!stdenv.hostPlatform.isDarwin && lib.versionAtLeast common.version "10.11") ''
|
||||
mv "$out"/lib/mysql/plugin/test_pam_modules/pam_mariadb_mtr.so "$out"/share/pam/lib/security
|
||||
''
|
||||
+ lib.optionalString (!stdenv.hostPlatform.isDarwin && lib.versionAtLeast common.version "10.6") ''
|
||||
mv "$out"/OFF/suite/plugins/pam/mariadb_mtr "$out"/share/pam/etc/security
|
||||
rm -r "$out"/OFF
|
||||
'';
|
||||
|
|
@ -387,8 +399,8 @@ self: {
|
|||
};
|
||||
mariadb_1011 = self.callPackage generic {
|
||||
# Supported until 2028-02-16
|
||||
version = "10.11.15";
|
||||
hash = "sha256-UxHoV2VAK95agamnsmQ6c3jSAxaigiv61LbdzxBHWaU=";
|
||||
version = "10.11.18";
|
||||
hash = "sha256-pGhSxoB1vnwxx7M/7iM8W1oAyMKBF/UgTRJOTy/Vb6g=";
|
||||
};
|
||||
mariadb_114 = self.callPackage generic {
|
||||
# Supported until 2029-05-29
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue