diff options
Diffstat (limited to 'odin/strm.nix')
-rw-r--r-- | odin/strm.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/odin/strm.nix b/odin/strm.nix index 33e605af..36d0e876 100644 --- a/odin/strm.nix +++ b/odin/strm.nix | |||
@@ -11,11 +11,12 @@ stdenv.mkDerivation { | |||
11 | buildPhase = '' | 11 | buildPhase = '' |
12 | substituteAllInPlace download_youtube | 12 | substituteAllInPlace download_youtube |
13 | substituteAllInPlace cleanup_youtube | 13 | substituteAllInPlace cleanup_youtube |
14 | substituteAllInPlace send_media | ||
14 | ''; | 15 | ''; |
15 | 16 | ||
16 | installPhase = '' | 17 | installPhase = '' |
17 | mkdir -p $out/bin | 18 | mkdir -p $out/bin |
18 | 19 | ||
19 | install -m 755 -t $out/bin download_youtube cleanup_youtube | 20 | install -m 755 -t $out/bin download_youtube cleanup_youtube send_media |
20 | ''; | 21 | ''; |
21 | } | 22 | } |