Files
Burpsuite-Professional/flake.nix
2025-06-12 03:43:51 +03:00

28 lines
495 B
Nix

{
description = "A nixos flake for burpsuite pro";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
};
in {
packages.${system} = {
burpsuitepro =
pkgs.callPackage ./default.nix {
};
default = self.packages.${system}.burpsuitepro;
};
};
}