feat(calibre): move calibre into wrapper
This commit is contained in:
parent
d0e1179dcb
commit
19ac2143f2
3 changed files with 16 additions and 12 deletions
|
@ -16,10 +16,12 @@
|
|||
inherit (self) outputs;
|
||||
|
||||
system = "x86_64-linux";
|
||||
overlays = import ./overlays;
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
overlays = [ overlays.calibre ];
|
||||
};
|
||||
|
||||
lib = nixpkgs.lib;
|
||||
|
|
|
@ -89,6 +89,7 @@ rec {
|
|||
protonmail-bridge-gui
|
||||
varia
|
||||
signal-desktop
|
||||
calibre
|
||||
|
||||
# Proprietary
|
||||
postman
|
||||
|
@ -115,18 +116,7 @@ rec {
|
|||
nixedit
|
||||
];
|
||||
in
|
||||
scripts
|
||||
++ pk
|
||||
++ [
|
||||
(pkgs.calibre.overrideAttrs (old: {
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/calibre \
|
||||
--set QT_QPA_PLATFORM xcb \
|
||||
--set-default ACSM_LIBCRYPTO ${pkgs.openssl.out}/lib/libcrypto.so \
|
||||
--set-default ACSM_LIBSSL ${pkgs.openssl.out}/lib/libssl.so
|
||||
'';
|
||||
}))
|
||||
];
|
||||
scripts ++ pk;
|
||||
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
|
|
12
overlays/default.nix
Normal file
12
overlays/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
calibre = 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
|
||||
'';
|
||||
});
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue