Commit 42197a7c authored by Alfrheim's avatar Alfrheim
Browse files

soapui: 5.7.0 -> 5.7.2



Update pkgs/applications/networking/soapui/default.nix

Co-authored-by: default avatarPeder Bergebakken Sundt <pbsds@hotmail.com>
parent d8137940
Loading
Loading
Loading
Loading
+18 −11
Original line number Diff line number Diff line
{ fetchurl, lib, stdenv, writeText, jdk, makeWrapper, nixosTests }:

{
  fetchurl,
  lib,
  stdenv,
  writeText,
  jdk,
  makeWrapper,
  nixosTests,
}:
stdenv.mkDerivation rec {
  pname = "soapui";
  version = "5.7.0";
  version = "5.7.2";

  src = fetchurl {
    url = "https://s3.amazonaws.com/downloads.eviware/soapuios/${version}/SoapUI-${version}-linux-bin.tar.gz";
    sha256 = "sha256-qzhy4yHmOk13dFUd2KEZhXtWY86QwyjJgYxx9GGoN80=";
    url = "https://dl.eviware.com/soapuios/${version}/SoapUI-${version}-linux-bin.tar.gz";
    sha256 = "sha256-pT0ZANVC7Sv7zxMDPY86aclIUGZeazOZadiVVsmEjtw=";
  };

  nativeBuildInputs = [makeWrapper];
@@ -54,7 +61,7 @@ stdenv.mkDerivation rec {
    sourceProvenance = with sourceTypes; [binaryBytecode];
    license = "SoapUI End User License Agreement";
    maintainers = with maintainers; [gerschtli];
    platforms = platforms.all;
    platforms = platforms.linux; # we don't fetch the dmg yet
    mainProgram = "soapui";
  };
}