mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
884 B
Nix
35 lines
884 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib, stdenv
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ffuf";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1jb2x0ybcb9zkqm7flpmr0hd3171xvnn6kxmfcgds4x8l9fbmxnr";
|
|
};
|
|
|
|
vendorSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
|
|
|
|
# tests don't pass due to an issue with the memory addresses
|
|
# https://github.com/ffuf/ffuf/issues/367
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Fast web fuzzer written in Go";
|
|
longDescription = ''
|
|
FFUF, or “Fuzz Faster you Fool” is an open source web fuzzing tool,
|
|
intended for discovering elements and content within web applications
|
|
or web servers.
|
|
'';
|
|
homepage = "https://github.com/ffuf/ffuf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|