summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: 0c148fd070a0f9ccfaab1e4ae44e4eb9f3ec9c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
with import <stockholm>; {
  env = pkgs.stdenv.mkDerivation {
    name = "playlist-tools";
    buildInputs = with pkgs; [
      ffmpeg
      parallel
      youtube-dl
      sox
      vorbisgain
      mpv
    ];
    SSL_CERT_FILE="/etc/ssl/certs/ca-bundle.crt";
    shellHook = ''
      PATH=$PATH:${./bin}
    '';
  };
}