about summary refs log tree commit diff
path: root/pkgs/development/tools/database/sqldeveloper/default.nix
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-02-04 13:14:36 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-02-04 13:51:52 +0100
commit294f667121f54f0ba5f77aedb38a0a9fa90bfa0f (patch)
treef5719feb09bd80a1effb0b0437b45f83d4083b9d /pkgs/development/tools/database/sqldeveloper/default.nix
parentf32e921ca9b354e00e08405d171825f9a3161d9b (diff)
downloadnixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar.gz
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar.bz2
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar.lz
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar.xz
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.tar.zst
nixlib-294f667121f54f0ba5f77aedb38a0a9fa90bfa0f.zip
sqldeveloper: {17.4.1.054.0712,18.2.0.183.1748} -> 19.4.0.354.1759
There are no new releases of sqldeveloper v17/v18 and I don't think that
we should keep obviously unmaintained software that interacts with
database systems.

I removed `sqldeveloper_18` and `pkgs.sqldeveloper` now points to
version 19.4. Unfortunately I had to drop darwin support as JavaFX is
required for 19.4 which is part of the `oraclejdk` which isn't packaged
for darwin yet.

For further information please refer to the release notes:

https://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/sqldev-relnotes-194-5908846.html
Diffstat (limited to 'pkgs/development/tools/database/sqldeveloper/default.nix')
-rw-r--r--pkgs/development/tools/database/sqldeveloper/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/database/sqldeveloper/default.nix b/pkgs/development/tools/database/sqldeveloper/default.nix
index 9e75088aa5cb..38be9089559f 100644
--- a/pkgs/development/tools/database/sqldeveloper/default.nix
+++ b/pkgs/development/tools/database/sqldeveloper/default.nix
@@ -1,7 +1,7 @@
 { stdenv, makeDesktopItem, makeWrapper, requireFile, unzip, jdk }:
 
 let
-  version = "17.4.1.054.0712";
+  version = "19.4.0.354.1759";
 
   desktopItem = makeDesktopItem {
     name = "sqldeveloper";
@@ -20,7 +20,7 @@ in
 
   src = requireFile rec {
     name = "sqldeveloper-${version}-no-jre.zip";
-    url = "http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/";
+    url = "https://www.oracle.com/tools/downloads/sqldev-downloads.html";
     message = ''
       This Nix expression requires that ${name} already be part of the store. To
       obtain it you need to
@@ -46,7 +46,7 @@ in
 
         nix-prefetch-url --type sha256 file:///path/to/${name}
     '';
-    sha256 = "7e92ca94d02489002db291c96f1d67f9b2501a8967ff3457103fcf60c1eb154a";
+    sha256 = "1hk3hfxyl6ryp4v1l9mgzflban565ayfmm2k412azmw5rnmjf6fv";
   };
 
   buildInputs = [ makeWrapper unzip ];
@@ -78,7 +78,7 @@ in
     '';
     homepage = http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/;
     license = licenses.unfree;
-    platforms = [ "x86_64-linux" "x86_64-darwin" ];
-    maintainers = with maintainers; [ ardumont flokli ];
+    platforms = [ "x86_64-linux" ];
+    maintainers = with maintainers; [ ardumont ma27 ];
   };
 }