| author | |
| committer | |
| log | 19cd24d2920736dd9598811f91c566b18ca61713 |
| tree | 64e6ee0e36ab92533eb050a14df2c23de8b97aa7 |
| parent | fdaac60f5c90b6fdfec90e21dcb8cee311450844 |
1 files changed, 11 insertions(+), 0 deletions(-)
shell.nix created+11| ... | @@ -0,0 +1,11 @@ | ||
| 1 | with import <nixpkgs> {}; | ||
| 2 | |||
| 3 | pkgs.mkShell { | ||
| 4 | nativeBuildInputs = with pkgs; [ | ||
| 5 | git | ||
| 6 | mercurial | ||
| 7 | wget unzip gnutar | ||
| 8 | ]; | ||
| 9 | |||
| 10 | hardeningDisable = [ "all" ]; | ||
| 11 | } | ||