Files
pan-globalprotect-okta/shell.nix
T
2020-04-24 14:45:55 +03:00

12 lines
163 B
Nix

with (import <nixpkgs> {});
mkShell {
buildInputs = [
openconnect
(python.withPackages (pypkgs: with pypkgs; [
lxml
requests
]))
];
}