dbvisualizer: 25.2.6 -> 25.3.3 (#510588)

This commit is contained in:
Peder Bergebakken Sundt
2026-04-19 17:21:26 +00:00
committed by GitHub
+8 -2
View File
@@ -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;