sourcephile
/
git
/
julm
/
julm-nix.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
wine: add profile
[julm/julm-nix.git]
/
nixpkgs
/
overlays
/
podl.nix
1
self: super: {
2
podl = super.writeShellScriptBin "podl" ''
3
PATH=${
4
with self;
5
lib.makeBinPath [
6
coreutils
7
util-linux
8
findutils
9
gnugrep
10
gnused
11
curl
12
aria2
13
yt-dlp
14
xmlstarlet
15
file
16
]
17
}
18
${builtins.readFile ./podl.sh}
19
'';
20
}