mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
28 lines
748 B
Nix
28 lines
748 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
libwebp,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "webp-thumbnailer";
|
|
version = "1.0.0";
|
|
|
|
dontUnpack = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/thumbnailers
|
|
|
|
echo "[Thumbnailer Entry]" >> $out/share/thumbnailers/webp.thumbnailer
|
|
echo "Exec=${libwebp}/bin/dwebp %i -scale %s 0 -o %o" >> $out/share/thumbnailers/webp.thumbnailer
|
|
echo "MimeType=image/x-webp;image/webp;" >> $out/share/thumbnailers/webp.thumbnailer
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/liquuid/nautilus-webp-thumbnailer";
|
|
description = "Create thumbnails from webp files";
|
|
maintainers = with lib.maintainers; [ donovanglover ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|