change Nix file

This commit is contained in:
Denis Lehmann 2021-03-29 22:13:13 +02:00
parent 08a37fb946
commit 7e29c7acbe

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
bc
wget
];
}