mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
11 lines
240 B
Nix
11 lines
240 B
Nix
# cailbre is obnoxious about opening HTML
|
|
final: prev: {
|
|
calibre = final.symlinkJoin {
|
|
name = "calibre";
|
|
paths = [prev.calibre];
|
|
buildInputs = [final.makeWrapper];
|
|
postBuild = ''
|
|
rm -r $out/share/mime
|
|
'';
|
|
};
|
|
}
|