69 lines
1.7 KiB
Nix
69 lines
1.7 KiB
Nix
{ pkgs, lib, ... }: let
|
|
baseFetcher = { instructions, type, title, id ? "", dir }: let
|
|
dirname = "${type}-${dir}";
|
|
in ''
|
|
pushd $IMG_DIR
|
|
mkdir '${dirname}'
|
|
pushd '${dirname}'
|
|
|
|
${instructions}
|
|
|
|
popd
|
|
|
|
sticker-pack \
|
|
--config "$STICKER_CONFIG" \
|
|
--add-to-index "$STICKERPACKS_DIR" \
|
|
--title '${title}' \
|
|
'${dirname}'
|
|
|
|
popd
|
|
'';
|
|
in {
|
|
directory-deps = [ ];
|
|
directory-build = { src, id ? "", title ? "", ... }: baseFetcher {
|
|
inherit id title;
|
|
type = "directory";
|
|
dir = builtins.baseNameOf src;
|
|
instructions = ''
|
|
ln -s ${src}/* .
|
|
'';
|
|
};
|
|
|
|
chatsticker-deps = with pkgs; [ wget html-xml-utils ];
|
|
chatsticker-build = { name, id ? "", title ? "", ... }: baseFetcher {
|
|
inherit id title;
|
|
type = "chatsticker";
|
|
dir = name;
|
|
instructions = ''
|
|
wget "https://chatsticker.com/sticker/${name}" -O raw.html
|
|
hxnormalize -l 240 -x raw.html > normalized.html
|
|
cat normalized.html | hxselect -s '\n' -c ".img-fluid::attr(src)" > images.txt;
|
|
sed -i 's|;compress=true||' images.txt
|
|
|
|
for url in $(cat images.txt); do
|
|
wget $url
|
|
done
|
|
|
|
rm raw.html normalized.html images.txt
|
|
'';
|
|
};
|
|
|
|
stickers-cloud-deps = with pkgs; [ wget html-xml-utils ];
|
|
stickers-cloud-build = { name, id ? "", title ? "", ... }: baseFetcher {
|
|
inherit id title;
|
|
type = "stickers-cloud";
|
|
dir = name;
|
|
instructions = ''
|
|
wget "https://stickers.cloud/en/pack/${name}" -O raw.html
|
|
hxnormalize -l 240 -x raw.html > normalized.html
|
|
cat normalized.html | hxselect -s '\n' -c "img.d-block.image-ratio::attr(src)" > images.txt;
|
|
|
|
for url in $(cat images.txt); do
|
|
wget $url
|
|
done
|
|
|
|
rm raw.html normalized.html images.txt
|
|
'';
|
|
};
|
|
}
|