nix-da/modules/nix/overlays/default.nix
Nydragon 0794bb4ce1 fix: removed undesired beheaviour from lollypop
lastfm and youtube, this changed was prompted by lollypop depending on
youtube-dl which has been deprecated in favor of yt-dlp and to avoid the
error message it generates, on top of the feature not being necessary
2024-07-14 15:09:03 +00:00

22 lines
623 B
Nix

{
nixpkgs.overlays = [
# Add env vars to calibre so they may get propagated to a plugin that needs them
(final: prev: {
calibre = prev.calibre.overrideAttrs (old: {
postInstall = ''
wrapProgram $out/bin/calibre \
--set QT_QPA_PLATFORM xcb \
--set-default ACSM_LIBCRYPTO ${prev.openssl.out}/lib/libcrypto.so \
--set-default ACSM_LIBSSL ${prev.openssl.out}/lib/libssl.so
'';
});
})
(final: prev: {
lollypop = prev.lollypop.override {
lastFMSupport = false;
youtubeSupport = false;
};
})
];
}