mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
31 lines
754 B
Nix
31 lines
754 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "jaeles";
|
|
version = "0.17.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jaeles-project";
|
|
repo = pname;
|
|
rev = "beta-v${version}";
|
|
hash = "sha256-IGvIjO1nCilg2sPyScGTH5Zmv0rORlGwRv3NRxQk+aM=";
|
|
};
|
|
|
|
vendorHash = "sha256-/Ow2qdcFduZ2ZyUUfCqpZxSh9yy3+tI/2N9Wl1fKXVI=";
|
|
|
|
# Tests want to download signatures
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Tool for automated Web application testing";
|
|
mainProgram = "jaeles";
|
|
homepage = "https://github.com/jaeles-project/jaeles";
|
|
changelog = "https://github.com/jaeles-project/jaeles/releases/tag/beta-v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|