This commit is contained in:
Valentin Boettcher 2020-08-13 21:18:03 +02:00
parent 349472a972
commit 61f63a062d
2 changed files with 12 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use_nix shell.nix

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "stream-shell";
buildInputs = with pkgs; [
clojure
leiningen
openjdk
ffmpeg
coreutils
];
}