Package for dbvisualizer 9.2.5

This commit is contained in:
Jeff Simpson 2015-04-08 21:10:12 -06:00
parent 76e67b46b5
commit 5d3a2602e1
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, jre, coreutils, makeWrapper }:
stdenv.mkDerivation {
name = "dbvisualizer-9.2.5";
src = fetchurl {
url = https://www.dbvis.com/product_download/dbvis-9.2.5/media/dbvis_unix_9_2_5.tar.gz;
sha256 = "e9d3374e96cf63903ebd9dae498c6b69403813eb8723187ed70f285dd7119327";
};
buildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp -a . $out
ln -sf $out/dbvis $out/bin
wrapProgram $out/bin/dbvis --set INSTALL4J_JAVA_HOME ${jre}
'';
meta = {
description = "The universal database tool";
homepage = https://www.dbvis.com/;
license = stdenv.lib.licenses.unfree;
};
}

View file

@ -10195,6 +10195,8 @@ let
inherit (gnome) GConf libglade;
};
dbvisualizer = callPackage ../applications/misc/dbvisualizer {};
dd-agent = callPackage ../tools/networking/dd-agent { inherit (pythonPackages) tornado; };
deadbeef = callPackage ../applications/audio/deadbeef {