stream/shell.nix
2020-08-13 21:18:03 +02:00

11 lines
171 B
Nix

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