stream/shell.nix

12 lines
171 B
Nix
Raw Permalink Normal View History

2020-08-13 21:18:03 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "stream-shell";
buildInputs = with pkgs; [
clojure
leiningen
openjdk
ffmpeg
coreutils
];
}