mirror of
https://github.com/anotherhadi/spilltea.git
synced 2026-05-20 01:32:33 +02:00
e8e64eff12
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{
|
|
description = "Spilltea: A minimal, terminal-based HTTP(S) proxy for pentesters and CTF players.";
|
|
|
|
inputs = {nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
}: let
|
|
supportedSystems = ["x86_64-linux" "aarch64-linux"];
|
|
|
|
forAllSystems = f:
|
|
nixpkgs.lib.genAttrs supportedSystems
|
|
(system: f system (import nixpkgs {inherit system;}));
|
|
|
|
pname = "spilltea";
|
|
version = "0.0.1";
|
|
|
|
ldflags = ["-s" "-w" "-X main.version=${version}"];
|
|
in {
|
|
packages = forAllSystems (system: pkgs: let
|
|
pkg = pkgs.buildGoModule {
|
|
inherit pname version ldflags;
|
|
|
|
src = ./.;
|
|
outputs = ["out"];
|
|
|
|
vendorHash = "sha256-u+u38Qr5Dugk5eFmxTK4vKUEv2SlXcfY6ZFlu1cPqVk=";
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "A minimal, terminal-based HTTP(S) proxy for pentesters and CTF players.";
|
|
homepage = "https://github.com/anotherhadi/spilltea";
|
|
platforms = platforms.unix;
|
|
};
|
|
};
|
|
in {
|
|
"${pname}" = pkg;
|
|
default = pkg;
|
|
});
|
|
};
|
|
}
|