mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
packages: Remove webp-thumbnailer
No longer necessary since webp thumbnailer support in tumbler is now upstreamed in nixpkgs. See: https://github.com/NixOS/nixpkgs/pull/340364
This commit is contained in:
parent
7393e7c0d6
commit
1d8199e20a
@ -1,27 +0,0 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user