571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
889 B
Nix
39 lines
889 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "graphw00f";
|
|
version = "1.1.18";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dolevf";
|
|
repo = "graphw00f";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-gM6I3TLCuVKO1dTHl2jrXtmLOv29pTqrV18nGW5TYFY=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|