Merge pull request #68381 from flokli/instantclient-19.3-macos
oracle-instantclient: 18.1.0.0.0 -> 19.3.0.0.0 (x86_64-darwin)
This commit is contained in:
commit
a10ba70aa2
|
@ -1,6 +1,5 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, requireFile
|
|
||||||
, autoPatchelfHook
|
, autoPatchelfHook
|
||||||
, fixDarwinDylibNames
|
, fixDarwinDylibNames
|
||||||
, unzip
|
, unzip
|
||||||
|
@ -23,7 +22,7 @@ let
|
||||||
# determine the version number, there might be different ones per architecture
|
# determine the version number, there might be different ones per architecture
|
||||||
version = {
|
version = {
|
||||||
x86_64-linux = "19.3.0.0.0";
|
x86_64-linux = "19.3.0.0.0";
|
||||||
x86_64-darwin = "18.1.0.0.0";
|
x86_64-darwin = "19.3.0.0.0";
|
||||||
}.${stdenv.hostPlatform.system} or throwSystem;
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
||||||
|
|
||||||
# hashes per component and architecture
|
# hashes per component and architecture
|
||||||
|
@ -35,18 +34,15 @@ let
|
||||||
odbc = "1g1z6pdn76dp440fh49pm8ijfgjazx4cvxdi665fsr62h62xkvch";
|
odbc = "1g1z6pdn76dp440fh49pm8ijfgjazx4cvxdi665fsr62h62xkvch";
|
||||||
};
|
};
|
||||||
x86_64-darwin = {
|
x86_64-darwin = {
|
||||||
basic = "fac3cdaaee7526f6c50ff167edb4ba7ab68efb763de24f65f63fb48cc1ba44c0";
|
basic = "f4335c1d53e8188a3a8cdfb97494ff87c4d0f481309284cf086dc64080a60abd";
|
||||||
sdk = "98e6d797f1ce11e59b042b232f62380cec29ec7d5387b88a9e074b741c13e63a";
|
sdk = "b46b4b87af593f7cfe447cfb903d1ae5073cec34049143ad8cdc9f3e78b23b27";
|
||||||
sqlplus = "02e66dc52398fced75e7efcb6b4372afcf617f7d88344fb7f0f4bb2bed371f3b";
|
sqlplus = "f7565c3cbf898b0a7953fbb0017c5edd9d11d1863781588b7caf3a69937a2e9e";
|
||||||
odbc = "5d0cdd7f9dd2e27affbc9b36ef9fc48e329713ecd36905fdd089366e365ae8a2";
|
odbc = "f91da40684abaa866aa059eb26b1322f2d527670a1937d678404c991eadeb725";
|
||||||
};
|
};
|
||||||
}.${stdenv.hostPlatform.system} or throwSystem;
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
||||||
|
|
||||||
# rels per component and architecture, optional
|
# rels per component and architecture, optional
|
||||||
rels = {
|
rels = {
|
||||||
x86_64-darwin = {
|
|
||||||
sdk = "2";
|
|
||||||
};
|
|
||||||
}.${stdenv.hostPlatform.system} or {};
|
}.${stdenv.hostPlatform.system} or {};
|
||||||
|
|
||||||
# convert platform to oracle architecture names
|
# convert platform to oracle architecture names
|
||||||
|
@ -55,29 +51,24 @@ let
|
||||||
x86_64-darwin = "macos.x64";
|
x86_64-darwin = "macos.x64";
|
||||||
}.${stdenv.hostPlatform.system} or throwSystem;
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
||||||
|
|
||||||
|
shortArch = {
|
||||||
|
x86_64-linux = "linux";
|
||||||
|
x86_64-darwin = "macos";
|
||||||
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
||||||
|
|
||||||
# calculate the filename of a single zip file
|
# calculate the filename of a single zip file
|
||||||
srcFilename = component: arch: version: rel:
|
srcFilename = component: arch: version: rel:
|
||||||
"instantclient-${component}-${arch}-${version}" +
|
"instantclient-${component}-${arch}-${version}" +
|
||||||
(optionalString (rel != "") "-${rel}") +
|
(optionalString (rel != "") "-${rel}") +
|
||||||
(optionalString (arch == "linux.x64") "dbru") + # ¯\_(ツ)_/¯
|
(optionalString (arch == "linux.x64" || arch == "macos.x64") "dbru") + # ¯\_(ツ)_/¯
|
||||||
".zip";
|
".zip";
|
||||||
|
|
||||||
# fetcher for the clickthrough artifacts (requiring manual download)
|
|
||||||
fetchClickThrough = srcFilename: hash: (requireFile {
|
|
||||||
name = srcFilename;
|
|
||||||
url = "https://www.oracle.com/database/technologies/instant-client/downloads.html";
|
|
||||||
sha256 = hash;
|
|
||||||
});
|
|
||||||
|
|
||||||
# fetcher for the non clickthrough artifacts
|
# fetcher for the non clickthrough artifacts
|
||||||
fetchSimple = srcFilename: hash: fetchurl {
|
fetcher = srcFilename: hash: fetchurl {
|
||||||
url = "https://download.oracle.com/otn_software/linux/instantclient/193000/${srcFilename}";
|
url = "https://download.oracle.com/otn_software/${shortArch}/instantclient/193000/${srcFilename}";
|
||||||
sha256 = hash;
|
sha256 = hash;
|
||||||
};
|
};
|
||||||
|
|
||||||
# pick the appropriate fetcher depending on the platform
|
|
||||||
fetcher = if stdenv.hostPlatform.system == "x86_64-linux" then fetchSimple else fetchClickThrough;
|
|
||||||
|
|
||||||
# assemble srcs
|
# assemble srcs
|
||||||
srcs = map (component:
|
srcs = map (component:
|
||||||
(fetcher (srcFilename component arch version rels.${component} or "") hashes.${component} or ""))
|
(fetcher (srcFilename component arch version rels.${component} or "") hashes.${component} or ""))
|
||||||
|
|
Loading…
Reference in New Issue