summaryrefslogtreecommitdiff
path: root/odin/strm.nix
blob: 36d0e876cdede5a5ac2e9b7d6f928f4748a6e0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, zsh, ffmpeg-full, youtube-dl, pv, notmuch }:

stdenv.mkDerivation {
  name = "strm";
  src = ./strm;

  phases = [ "unpackPhase" "buildPhase" "installPhase" ];

  inherit zsh ffmpeg-full youtube-dl pv notmuch;

  buildPhase = ''
    substituteAllInPlace download_youtube
    substituteAllInPlace cleanup_youtube
    substituteAllInPlace send_media
  '';

  installPhase = ''
    mkdir -p $out/bin

    install -m 755 -t $out/bin download_youtube cleanup_youtube send_media
  '';
}