Merge pull request #265202 from anthonyroussel/wiremock
wiremock: 2.35.0 -> 3.2.0
This commit is contained in:
commit
2434a97beb
@ -1,11 +1,12 @@
|
|||||||
{ lib, stdenv, fetchurl, jre, makeWrapper }:
|
{ lib, stdenv, fetchurl, jre, makeWrapper, gitUpdater }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wiremock";
|
pname = "wiremock";
|
||||||
version = "2.35.0";
|
version = "3.2.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://maven/com/github/tomakehurst/wiremock-jre8-standalone/${version}/wiremock-jre8-standalone-${version}.jar";
|
url = "mirror://maven/org/wiremock/wiremock-standalone/${version}/wiremock-standalone-${version}.jar";
|
||||||
hash = "sha256-rhVq4oEuPPpHDEftBzEA707HeSc3Kk4gPw471THz61c=";
|
hash = "sha256-voO9UAxhxQlWWs4jMji93TBUCcFWht/4Cea+UpBmL3Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
@ -20,10 +21,17 @@ stdenv.mkDerivation rec {
|
|||||||
--add-flags "-jar $out/share/wiremock/wiremock.jar"
|
--add-flags "-jar $out/share/wiremock/wiremock.jar"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = gitUpdater {
|
||||||
|
url = "https://github.com/wiremock/wiremock.git";
|
||||||
|
ignoredVersions = "(alpha|beta|rc).*";
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A flexible tool for building mock APIs";
|
description = "A flexible tool for building mock APIs";
|
||||||
homepage = "https://wiremock.org/";
|
homepage = "https://wiremock.org/";
|
||||||
maintainers = with lib.maintainers; [ bobvanderlinden ];
|
changelog = "https://github.com/wiremock/wiremock/releases/tag/${version}";
|
||||||
|
maintainers = with lib.maintainers; [ bobvanderlinden anthonyroussel ];
|
||||||
|
mainProgram = "wiremock";
|
||||||
platforms = jre.meta.platforms;
|
platforms = jre.meta.platforms;
|
||||||
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
@ -41770,8 +41770,6 @@ with pkgs;
|
|||||||
|
|
||||||
wire-desktop = callPackage ../applications/networking/instant-messengers/wire-desktop { };
|
wire-desktop = callPackage ../applications/networking/instant-messengers/wire-desktop { };
|
||||||
|
|
||||||
wiremock = callPackage ../tools/networking/wiremock { };
|
|
||||||
|
|
||||||
wireworld = callPackage ../games/wireworld { };
|
wireworld = callPackage ../games/wireworld { };
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user