Files
sif/flake.nix
Sol Fisher Romanoff 49a351fd1d Add nix flake devshell
TODO: build go application
2023-09-14 20:46:44 +03:00

19 lines
448 B
Nix

{
description = "a blazing-fast pentesting (recon/exploitation) suite";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ go ];
};
});
}