summaryrefslogtreecommitdiff
path: root/odin/strm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'odin/strm.nix')
-rw-r--r--odin/strm.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/odin/strm.nix b/odin/strm.nix
index 8c88514e..71d93011 100644
--- a/odin/strm.nix
+++ b/odin/strm.nix
@@ -1,4 +1,4 @@
1{ stdenv, zsh, ffmpeg-full, youtube-dl, pv, notmuch }: 1{ stdenv, zsh, ffmpeg-full, youtube-dl, pv, notmuch, rss2email }:
2 2
3stdenv.mkDerivation { 3stdenv.mkDerivation {
4 name = "strm"; 4 name = "strm";
@@ -6,7 +6,7 @@ stdenv.mkDerivation {
6 6
7 phases = [ "unpackPhase" "buildPhase" "installPhase" ]; 7 phases = [ "unpackPhase" "buildPhase" "installPhase" ];
8 8
9 inherit zsh pv notmuch; 9 inherit zsh pv notmuch rss2email;
10 ffmpeg = ffmpeg-full; 10 ffmpeg = ffmpeg-full;
11 youtubedl = youtube-dl; 11 youtubedl = youtube-dl;
12 12
@@ -16,6 +16,7 @@ stdenv.mkDerivation {
16 substituteAllInPlace send_media 16 substituteAllInPlace send_media
17 substituteAllInPlace cache_media 17 substituteAllInPlace cache_media
18 substituteAllInPlace send_kitty 18 substituteAllInPlace send_kitty
19 substituteAllInPlace rss_staggered
19 ''; 20 '';
20 21
21 installPhase = '' 22 installPhase = ''
@@ -26,6 +27,7 @@ stdenv.mkDerivation {
26 cleanup_youtube \ 27 cleanup_youtube \
27 send_media \ 28 send_media \
28 cache_media \ 29 cache_media \
29 send_kitty 30 send_kitty \
31 rss_staggered
30 ''; 32 '';
31} 33}