nix-config/overlays/calibre-dedrm/default.nix

8 lines
241 B
Nix
Raw Normal View History

2023-06-24 17:26:53 +02:00
self: super: {
calibre-dedrm =
super.calibre.overrideAttrs (oa: {
# We want to have pycryptodome around in order to support DeDRM
nativeBuildInputs = oa.nativeBuildInputs ++ [ self.python3Packages.pycryptodome ];
});
}