gotestwaf 0.4.10 -> 0.4.11 https://repology.org/project/gotestwaf/versions attrpath: gotestwaf Checking auto update branch... No auto update branch exists Old version 0.4.10" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , gotestwaf , testers }: buildGoModule rec { pname = "gotestwaf"; version = "0.4.11"; src = fetchFromGitHub { owner = "wallarm"; repo = "gotestwaf"; rev = "refs/tags/v${version}"; hash = "sha256-xvlzSBvOM09b/m4gI1sbIpIlFJnXQL0G4xet/AL3Yxo="; }; vendorHash = null; # Some tests require networking as of v0.4.0 doCheck = false; ldflags = [ "-w" "-s" "-X=github.com/wallarm/gotestwaf/internal/version.Version=v${version}" ]; postFixup = '' # Rename binary mv $out/bin/cmd $out/bin/${pname} ''; passthru.tests.version = testers.testVersion { command = "gotestwaf --version"; package = gotestwaf; version = "v${version}"; }; meta = with lib; { description = "Tool for API and OWASP attack simulation"; homepage = "https://github.com/wallarm/gotestwaf"; changelog = "https://github.com/wallarm/gotestwaf/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }