From 1d8199e20a88e47db92c616a9f3fa9fa513c33b1 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 9 Sep 2024 13:34:24 -0400 Subject: [PATCH] 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 --- packages/webp-thumbnailer.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 packages/webp-thumbnailer.nix diff --git a/packages/webp-thumbnailer.nix b/packages/webp-thumbnailer.nix deleted file mode 100644 index ec3ceeaa..00000000 --- a/packages/webp-thumbnailer.nix +++ /dev/null @@ -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; - }; -}