summaryrefslogtreecommitdiffstats
path: root/env.nix
blob: 0309daa91da5cd51c0f00da08687e7e86950ad79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {}; {
  env = stdenv.mkDerivation {
    name = "playlist-tools";
    buildInputs = [
      sox
      pypyPackages.youtube-dl-light
      ffmpeg
      vorbisgain
    ];
    SSL_CERT_FILE="/etc/ssl/certs/ca-bundle.crt";
  };
}