From 0e99e30f33a22b55eb1b0488cbd6f213777198cd Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Mon, 7 Feb 2022 18:17:12 +0100 Subject: [PATCH] add shell.nix --- 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..b6a580d --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + buildInputs = with pkgs; [ + lame + sox + ]; +}