summaryrefslogtreecommitdiff
path: root/odin/strm.nix
blob: 71d930113b311f6cc820959f1a13fc5bceafbb0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, zsh, ffmpeg-full, youtube-dl, pv, notmuch, rss2email }:

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

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

  inherit zsh pv notmuch rss2email;
  ffmpeg = ffmpeg-full;
  youtubedl = youtube-dl;

  buildPhase = ''
    substituteAllInPlace download_youtube
    substituteAllInPlace cleanup_youtube
    substituteAllInPlace send_media
    substituteAllInPlace cache_media
    substituteAllInPlace send_kitty
    substituteAllInPlace rss_staggered
  '';

  installPhase = ''
    mkdir -p $out/bin

    install -m 755 -t $out/bin \
      download_youtube \
      cleanup_youtube \
      send_media \
      cache_media \
      send_kitty \
      rss_staggered
  '';
}