Unverified Commit 60a8e5ac authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

dbvisualizer: 25.2.6 -> 25.3.3 (#510588)

parents b35e1a32 d389a337
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -8,12 +8,18 @@
  stdenv,
}:

# nixpkgs-update: no auto update
# NOTE: Do not update to interim patch versions. The download URL will get shut
# down after a while. Dbvisualizer discontinues download
# URLs for all but the last patch version per minor version.
# Example: v25.3.2 gets shut down after v25.3.3 gets released.

let
  pname = "dbvisualizer";
in
stdenv.mkDerivation (finalAttrs: {
  inherit pname;
  version = "25.2.6";
  version = "25.3.3";

  src =
    let
@@ -21,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: {
    in
    fetchurl {
      url = "https://www.dbvis.com/product_download/dbvis-${finalAttrs.version}/media/dbvis_linux_${underscoreVersion}.tar.gz";
      hash = "sha256-yiL0FFkSntwLy/oOkiDQKTvTOUrtbv/9kV+1nLZtMB0=";
      hash = "sha256-rvS2NczwmT1+/JIfpLI518I0/2AaIJEQAOwmKUK2FQs=";
    };

  strictDeps = true;