From 7e29c7acbed7e4c40bd891aec803a6011d649533 Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Mon, 29 Mar 2021 22:13:13 +0200 Subject: [PATCH] change Nix file --- shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..545e89b --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + buildInputs = with pkgs; [ + bc + wget + ]; +}