summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2023-04-07 16:41:37 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2023-04-07 17:00:57 -0400
commitfcc5bc2af4cb45e47ab7fc05d65016754707f4e0 (patch)
tree426701687609004c0b17ce1433ad00f794e5f185
parent752fabf7560aed57324d9c1708b683144a0d34e2 (diff)
downloadnixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar.gz
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar.bz2
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar.lz
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar.xz
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.tar.zst
nixpkgs-fcc5bc2af4cb45e47ab7fc05d65016754707f4e0.zip
oracle-instantclient: 19.16.0.0.0 -> 21.9.0.0.0 (x86_64-linux)
-rw-r--r--pkgs/development/libraries/oracle-instantclient/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/libraries/oracle-instantclient/default.nix b/pkgs/development/libraries/oracle-instantclient/default.nix
index 129874c1dfb..6b3bb5f6231 100644
--- a/pkgs/development/libraries/oracle-instantclient/default.nix
+++ b/pkgs/development/libraries/oracle-instantclient/default.nix
@@ -22,13 +22,13 @@ let
 
   # determine the version number, there might be different ones per architecture
   version = {
-    x86_64-linux = "19.16.0.0.0";
+    x86_64-linux = "21.9.0.0.0";
     aarch64-linux = "19.10.0.0.0";
     x86_64-darwin = "19.3.0.0.0";
   }.${stdenv.hostPlatform.system} or throwSystem;
 
   directory = {
-    x86_64-linux = "1916000";
+    x86_64-linux = "219000";
     aarch64-linux = "191000";
     x86_64-darwin = "193000";
   }.${stdenv.hostPlatform.system} or throwSystem;
@@ -36,11 +36,11 @@ let
   # hashes per component and architecture
   hashes = {
     x86_64-linux = {
-      basic = "sha256-Sq1rWvbC1YME7EjSYPaP2g+1Xxxkk4ZkGaBmLo2cKcQ=";
-      sdk = "sha256-yJ8f/Hlq6vZoPxv+dfY4z1E7rWvcqlK+ou0SU0KKlEI=";
-      sqlplus = "sha256-C44srukpCB9et9UWm59daJmU83zr0HAktnWv7R42Irw=";
-      tools = "sha256-GP4E1REIoU3lctVYmLsAiwTJEvGRpCmOFlRuZk+A8HE=";
-      odbc = "sha256-JECxK7Ia1IJtve2goZJdTkvm5NJjqB2rc6k5BXUt3oA=";
+      basic = "sha256-wiygUvZFYvjp5pndv3b9yTPxe8sC5HZkJ7jZqO1Mss8=";
+      sdk = "sha256-ehqHV52yLRe8ehrKqpLaN0HnN3zjHU7WrfjtqvQadgY=";
+      sqlplus = "sha256-tYvoG+7l5jXyTpxFUYZXaHCT0xGDeah78AinJ2qIsE8=";
+      tools = "sha256-6K2Ni0ZqqpqCrGFrBD06s0QNjNEDtNPrvDQ1U97lTKY=";
+      odbc = "sha256-yTANMLhaEqm9/ZEVqhEn1Gl8eJukgvqpqdaMRjxWxgs=";
     };
     aarch64-linux = {
       basic = "sha256-DNntH20BAmo5kOz7uEgW2NXaNfwdvJ8l8oMnp50BOsY=";
@@ -143,7 +143,7 @@ stdenv.mkDerivation {
     sourceProvenance = with sourceTypes; [ binaryBytecode ];
     license = licenses.unfree;
     platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
-    maintainers = with maintainers; [ flokli ];
+    maintainers = with maintainers; [ flokli dylanmtaylor ];
     hydraPlatforms = [ ];
   };
 }