shell.nix for NixOS

This commit is contained in:
siers
2020-04-24 14:45:45 +03:00
parent 7bcd9eb363
commit 27f1538188
+11
View File
@@ -0,0 +1,11 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
openconnect
(python.withPackages (pypkgs: with pypkgs; [
lxml
requests
]))
];
}