tyt/shell.nix
2021-03-14 22:34:09 +01:00

8 lines
113 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
jq
mpv
youtube-dl
];
}