8 lines
241 B
Nix
8 lines
241 B
Nix
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 ];
|
|
});
|
|
}
|