Files
frida-agent/flake.nix
2026-02-04 11:35:08 +00:00

37 lines
779 B
Nix

{
description = "A development environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
{ nixpkgs, ... }:
let
# system should match the system you are running on
system = "x86_64-linux";
in
{
devShells."${system}".default =
let
pkgs = import nixpkgs { inherit system; };
in
pkgs.mkShell {
# create an environment with nodejs_24, pnpm, and yarn
packages = with pkgs; [
android-tools
nodejs
python314
frida-tools
package-version-server
pyright
vtsls
];
shellHook = ''
# run some script here
'';
};
};
}