Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "jaeles"; 8 version = "0.17"; 9 10 src = fetchFromGitHub { 11 owner = "jaeles-project"; 12 repo = pname; 13 rev = "beta-v${version}"; 14 hash = "sha256-IGB+TYMOOO7fvRfDe9y+JSXuDSMDVJK+N4hS+kezG48="; 15 }; 16 17 vendorSha256 = "sha256-R2cP5zNuGUs0/KeaGhbQm1m5gVBVhpcFrS/jsph3EBk="; 18 19 # Tests want to download signatures 20 doCheck = false; 21 22 meta = with lib; { 23 description = "Tool for automated Web application testing"; 24 homepage = "https://github.com/jaeles-project/jaeles"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ fab ]; 27 }; 28}