ffuff/default.nix
albertvala 1cd61646ff
Some checks failed
CodeQL / Analyze (go) (push) Has been cancelled
golangci-lint / lint (push) Has been cancelled
fix(nix): temporary fix - change name to ffuf
2025-02-04 19:00:44 +01:00

23 lines
512 B
Nix

{ pkgs ? (
let
inherit (builtins) fetchTree fromJSON readFile;
inherit ((fromJSON (readFile ./flake.lock)).nodes) nixpkgs gomod2nix;
in
import (fetchTree nixpkgs.locked) {
overlays = [
(import "${fetchTree gomod2nix.locked}/overlay.nix")
];
}
)
, buildGoApplication ? pkgs.buildGoApplication
}:
buildGoApplication {
# TODO: Change name to ffuff to avoid conflicts
pname = "ffuf";
version = "0.1";
pwd = ./.;
src = ./.;
modules = ./gomod2nix.toml;
}