jnetmap: 0.5.4 -> 0.5.5

This fixes a startup crash:

  $ jnetmap
  Exception in thread "main" java.lang.NoClassDefFoundError: edu/uci/ics/jung/graph/MultiGraph
  ...
  (exit code 1)
This commit is contained in:
Bjørn Forsman 2023-01-28 16:33:11 +01:00
parent 99563190d5
commit c0c9af0824

View file

@ -2,11 +2,12 @@
stdenv.mkDerivation rec {
pname = "jnetmap";
version = "0.5.4";
version = "0.5.5";
versionSuffix = "-703";
src = fetchurl {
url = "mirror://sourceforge/project/jnetmap/jNetMap%20${version}/jNetMap-${version}.jar";
sha256 = "0nxsfa600jhazwbabxmr9j37mhwysp0fyrvczhv3f1smiy8rjanl";
url = "mirror://sourceforge/project/jnetmap/jNetMap%20${version}/jNetMap-${version}${versionSuffix}.jar";
sha256 = "sha256-e4Ssm2Sq/v1YZ7ZudAqgQ7Cz2ffwWbSmLFoKhaZvTPg=";
};
nativeBuildInputs = [ makeWrapper ];