From 61f63a062d678c9a01c63e7d09b05acf210f58af Mon Sep 17 00:00:00 2001 From: Valentin Boettcher Date: Thu, 13 Aug 2020 21:18:03 +0200 Subject: [PATCH] use nix --- .envrc | 1 + shell.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..9800a71 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use_nix shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..799a631 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + name = "stream-shell"; + buildInputs = with pkgs; [ + clojure + leiningen + openjdk + ffmpeg + coreutils + ]; +}