Flake lock file updates: • Updated input 'home-manager': 'github:nix-community/home-manager/ae62fd8ad8347e6bb5b615057f39f33d595a1c47' (2025-07-12) → 'github:nix-community/home-manager/710771af3d1c8c3f86a9e5d562616973ed5f3f21' (2025-07-27) • Updated input 'lix': 'git+https://git@git.lix.systems/lix-project/lix?ref=refs/heads/main&rev=ae00b1298353a43a10bbecea8220471731db10ec' (2025-07-12) → 'git+https://git@git.lix.systems/lix-project/lix?ref=refs/heads/main&rev=ef94901156c0c688ffffaa2c5caf1498119f01d4' (2025-07-26) • Updated input 'nil': 'github:oxalica/nil/b043bfe1f3f4c4be4b688e24c5ae96e81f525805' (2025-07-01) → 'github:oxalica/nil/524ae2d67dd84d99a10f409ed6cd8e4e7b3cae3f' (2025-07-18) • Updated input 'niri': 'github:sodiboo/niri-flake/b658155b3c10d32c62fad3bde0097b87b47d2d08' (2025-07-12) → 'github:sodiboo/niri-flake/af1af659e690b3e535d94c54a64700767bfc9544' (2025-07-26) • Updated input 'niri/niri-unstable': 'github:YaLTeR/niri/37458d94b288945f6cfbd3c5c233f634d59f246c' (2025-06-24) → 'github:YaLTeR/niri/fefc0bc0a71556eb75352e2b611e50eb5d3bf9c2' (2025-07-18) • Updated input 'niri/nixpkgs': 'github:NixOS/nixpkgs/9807714d6944a957c2e036f84b0ff8caf9930bc0' (2025-07-08) → 'github:NixOS/nixpkgs/7fd36ee82c0275fb545775cc5e4d30542899511d' (2025-07-25) • Updated input 'niri/nixpkgs-stable': 'github:NixOS/nixpkgs/10e687235226880ed5e9f33f1ffa71fe60f2638a' (2025-07-10) → 'github:NixOS/nixpkgs/3ff0e34b1383648053bba8ed03f201d3466f90c9' (2025-07-24) • Updated input 'nix-hardware': 'github:nixos/nixos-hardware/7ced9122cff2163c6a0212b8d1ec8c33a1660806' (2025-07-09) → 'github:nixos/nixos-hardware/cc66fddc6cb04ab479a1bb062f4d4da27c936a22' (2025-07-21) • Updated input 'nixos-hardware': 'github:NixOS/nixos-hardware/7ced9122cff2163c6a0212b8d1ec8c33a1660806' (2025-07-09) → 'github:NixOS/nixos-hardware/cc66fddc6cb04ab479a1bb062f4d4da27c936a22' (2025-07-21) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/9807714d6944a957c2e036f84b0ff8caf9930bc0' (2025-07-08) → 'github:NixOS/nixpkgs/7fd36ee82c0275fb545775cc5e4d30542899511d' (2025-07-25) • Updated input 'stylix': 'github:danth/stylix/0da583a359fd911d5cbfd2c789424b888b777a4b' (2025-07-11) → 'github:danth/stylix/af85565aba0f4749cb18b118a7333a0745920950' (2025-07-26) • Updated input 'stylix/base16-helix': 'github:tinted-theming/base16-helix/6c711ab1a9db6f51e2f6887cc3345530b33e152e' (2025-05-28) → 'github:tinted-theming/base16-helix/27cf1e66e50abc622fb76a3019012dc07c678fac' (2025-07-20) • Updated input 'waveforms/nixpkgs': 'path:/nix/store/cd7fkv2r1nflz758r8bsnqfvkq7f72wj-source?lastModified=1751637120&narHash=sha256-xVNy/XopSfIG9c46nRmPaKfH1Gn/56vQ8%2B%2BxWA8itO4%3D&rev=5c724ed1388e53cc231ed98330a60eb2f7be4be3' (2025-07-04) → 'path:/nix/store/bgl6ldj5ihbwcq8p42z3a0qzgqafgk2b-source?lastModified=1751984180&narHash=sha256-LwWRsENAZJKUdD3SpLluwDmdXY9F45ZEgCb0X%2BxgOL0%3D&rev=9807714d6944a957c2e036f84b0ff8caf9930bc0' (2025-07-08)
29 lines
663 B
Nix
29 lines
663 B
Nix
#
|
|
# Makes Calibre support plugins that need libcrypto.
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{ ... }:
|
|
let
|
|
overlay = finalPkgs: prevPkgs: {
|
|
calibre = prevPkgs.calibre.overrideAttrs {
|
|
|
|
doCheck = false;
|
|
installCheckPhase = "";
|
|
|
|
# Also include libcrypto in an accessible path.
|
|
preFixup = ''
|
|
for program in $out/bin/*; do
|
|
wrapProgram $program \
|
|
''${qtWrapperArgs[@]} \
|
|
''${gappsWrapperArgs[@]} \
|
|
--prefix PATH : "${finalPkgs.poppler_utils.out}/bin" \
|
|
--prefix LD_LIBRARY_PATH : "${finalPkgs.openssl_3_5.out}/lib"
|
|
done
|
|
'';
|
|
};
|
|
};
|
|
in
|
|
{
|
|
nixpkgs.overlays = [ overlay ];
|
|
}
|