Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
873 B
Nix
39 lines
873 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "graphw00f";
|
|
version = "1.2.1";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dolevf";
|
|
repo = "graphw00f";
|
|
tag = version;
|
|
hash = "sha256-8fOvcc//UdDawgGMAhbYQ/O5kd1l2skWGDlFNYocNY8=";
|
|
};
|
|
|
|
dependencies = with python3.pkgs; [ requests ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -vD main.py $out/bin/graphw00f
|
|
install -vD {conf,version}.py -t $out/${python3.sitePackages}/
|
|
install -vD graphw00f/* -t $out/${python3.sitePackages}/graphw00f
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "GraphQL Server Engine Fingerprinting utility";
|
|
homepage = "https://github.com/dolevf/graphw00f";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "graphw00f";
|
|
};
|
|
}
|