mirror of
https://github.com/os-mnemo/pan-globalprotect-okta
synced 2026-07-31 07:44:38 +02:00
12 lines
163 B
Nix
12 lines
163 B
Nix
with (import <nixpkgs> {});
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
openconnect
|
|
(python.withPackages (pypkgs: with pypkgs; [
|
|
lxml
|
|
requests
|
|
]))
|
|
];
|
|
}
|