blob: 82ba2bdb687c64e9fbaf7671123b3d67478a498e (
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
|
{ 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
substituteAllInPlace cache_media
substituteAllInPlace send_kitty
'';
installPhase = ''
mkdir -p $out/bin
install -m 755 -t $out/bin \
download_youtube \
cleanup_youtube \
send_media \
cache_media \
send_kitty
'';
}
|