mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
150 lines
4.8 KiB
Nix
150 lines
4.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, fixDarwinDylibNames
|
|
, unzip
|
|
, libaio
|
|
, makeWrapper
|
|
, odbcSupport ? true
|
|
, unixODBC
|
|
}:
|
|
|
|
assert odbcSupport -> unixODBC != null;
|
|
|
|
let
|
|
inherit (lib) optional optionals optionalString;
|
|
|
|
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
|
|
|
# assemble list of components
|
|
components = [ "basic" "sdk" "sqlplus" "tools" ] ++ optional odbcSupport "odbc";
|
|
|
|
# determine the version number, there might be different ones per architecture
|
|
version = {
|
|
x86_64-linux = "21.10.0.0.0";
|
|
aarch64-linux = "19.10.0.0.0";
|
|
x86_64-darwin = "19.8.0.0.0";
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
|
|
|
directory = {
|
|
x86_64-linux = "2110000";
|
|
aarch64-linux = "191000";
|
|
x86_64-darwin = "198000";
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
|
|
|
# hashes per component and architecture
|
|
hashes = {
|
|
x86_64-linux = {
|
|
basic = "sha256-uo0QBOmx7TQyroD+As60IhjEkz//+0Cm1tWvLI3edaE=";
|
|
sdk = "sha256-TIBFi1jHLJh+SUNFvuL7aJpxh61hG6gXhFIhvdPgpts=";
|
|
sqlplus = "sha256-mF9kLjhZXe/fasYDfmZrYPL2CzAp3xDbi624RJDA4lM=";
|
|
tools = "sha256-ay8ynzo1fPHbCg9GoIT5ja//iZPIZA2yXI/auVExiRY=";
|
|
odbc = "sha256-3M6/cEtUrIFzQay8eHNiLGE+L0UF+VTmzp4cSBcrzlk=";
|
|
};
|
|
aarch64-linux = {
|
|
basic = "sha256-DNntH20BAmo5kOz7uEgW2NXaNfwdvJ8l8oMnp50BOsY=";
|
|
sdk = "sha256-8VpkNyLyFMUfQwbZpSDV/CB95RoXfaMr8w58cRt/syw=";
|
|
sqlplus = "sha256-iHcyijHhAvjsAqN9R+Rxo2R47k940VvPbScc2MWYn0Q=";
|
|
tools = "sha256-4QY0EwcnctwPm6ZGDZLudOFM4UycLFmRIluKGXVwR0M=";
|
|
odbc = "sha256-T+RIIKzZ9xEg/E72pfs5xqHz2WuIWKx/oRfDrQbw3ms=";
|
|
};
|
|
x86_64-darwin = {
|
|
basic = "sha256-V+1BmPOhDYPNXdwkcsBY1MOwt4Yka66/a7/HORzBIIc=";
|
|
sdk = "sha256-D6iuTEQYqmbOh1z5LnKN16ga6vLmjnkm4QK15S/Iukw=";
|
|
sqlplus = "sha256-08uoiwoKPZmTxLZLYRVp0UbN827FXdhOukeDUXvTCVk=";
|
|
tools = "sha256-1xFFGZapFq9ogGQ6ePSv4PrXl5qOAgRZWAp4mJ5uxdU=";
|
|
odbc = "sha256-S6+5P4daK/+nXwoHmOkj4DIkHtwdzO5GOkCCI612bRY=";
|
|
};
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
|
|
|
# rels per component and architecture, optional
|
|
rels = { }.${stdenv.hostPlatform.system} or { };
|
|
|
|
# convert platform to oracle architecture names
|
|
arch = {
|
|
x86_64-linux = "linux.x64";
|
|
aarch64-linux = "linux.arm64";
|
|
x86_64-darwin = "macos.x64";
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
|
|
|
shortArch = {
|
|
x86_64-linux = "linux";
|
|
aarch64-linux = "linux";
|
|
x86_64-darwin = "mac";
|
|
}.${stdenv.hostPlatform.system} or throwSystem;
|
|
|
|
# calculate the filename of a single zip file
|
|
srcFilename = component: arch: version: rel:
|
|
"instantclient-${component}-${arch}-${version}" +
|
|
(optionalString (rel != "") "-${rel}") +
|
|
"dbru.zip"; # ¯\_(ツ)_/¯
|
|
|
|
# fetcher for the non clickthrough artifacts
|
|
fetcher = srcFilename: hash: fetchurl {
|
|
url = "https://download.oracle.com/otn_software/${shortArch}/instantclient/${directory}/${srcFilename}";
|
|
sha256 = hash;
|
|
};
|
|
|
|
# assemble srcs
|
|
srcs = map
|
|
(component:
|
|
(fetcher (srcFilename component arch version rels.${component} or "") hashes.${component} or ""))
|
|
components;
|
|
|
|
pname = "oracle-instantclient";
|
|
extLib = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit pname version srcs;
|
|
|
|
buildInputs = [ (lib.getLib stdenv.cc.cc) ]
|
|
++ optional stdenv.hostPlatform.isLinux libaio
|
|
++ optional odbcSupport unixODBC;
|
|
|
|
nativeBuildInputs = [ makeWrapper unzip ]
|
|
++ optional stdenv.hostPlatform.isLinux autoPatchelfHook
|
|
++ optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
unpackCmd = "unzip $curSrc";
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/"{bin,include,lib,"share/java","share/${pname}-${version}/demo/"} $lib/lib
|
|
install -Dm755 {adrci,genezi,uidrvci,sqlplus,exp,expdp,imp,impdp} $out/bin
|
|
|
|
# cp to preserve symlinks
|
|
cp -P *${extLib}* $lib/lib
|
|
|
|
install -Dm644 *.jar $out/share/java
|
|
install -Dm644 sdk/include/* $out/include
|
|
install -Dm644 sdk/demo/* $out/share/${pname}-${version}/demo
|
|
|
|
# provide alias
|
|
ln -sfn $out/bin/sqlplus $out/bin/sqlplus64
|
|
'';
|
|
|
|
postFixup = optionalString stdenv.hostPlatform.isDarwin ''
|
|
for exe in "$out/bin/"* ; do
|
|
if [ ! -L "$exe" ]; then
|
|
install_name_tool -add_rpath "$lib/lib" "$exe"
|
|
fi
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Oracle instant client libraries and sqlplus CLI";
|
|
longDescription = ''
|
|
Oracle instant client provides access to Oracle databases (OCI,
|
|
OCCI, Pro*C, ODBC or JDBC). This package includes the sqlplus
|
|
command line SQL client.
|
|
'';
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
|
|
maintainers = with maintainers; [ dylanmtaylor ];
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|