Compare commits

...

2 Commits

Author SHA1 Message Date
benton 7f682b82d5 added more verified book stores 2021-08-02 15:43:28 -05:00
benton d33a44a143 added meta info to flake 2021-08-02 13:57:32 -05:00
2 changed files with 18 additions and 4 deletions

View File

@ -35,10 +35,12 @@ This software does not utilize Adobe Digital Editions nor Wine. It is completely
## Verified Book Sources
Knock has been verified to work on books provided by the following
* [eBooks.com](https://www.ebooks.com/en-us/), as long as the description says
> To download and read this eBook on a PC or Mac:
> * Adobe Digital Editions (This is a free app specially developed for eBooks. It's not the same as Adobe Reader, which you probably already have on your computer.)
Knock should work on any ACSM file, but it has been specifically verified to work on ACSM EPUB files from the following:
* [eBooks.com](https://www.ebooks.com/en-us/)
* [Rakuten Kobo](https://www.kobo.com/us/en)
* [Google Books](https://books.google.com/)
* [Hugendubel.de](https://www.hugendubel.de/de/) (German)
The resulting EPUB file can be read with any EPUB reader.

View File

@ -30,6 +30,18 @@
cp knock $out/bin
wrapProgram $out/bin/knock --prefix PATH : ${nixpkgs.lib.makeBinPath [libgourou-utils inept-epub]}
'';
meta = {
description = "A CLI tool to convert ACSM files to DRM-free EPUB files";
homepage = "https://github.com/BentonEdmondson/knock";
license = [ nixpkgs.lib.licenses.gpl3Only ];
maintainers = [{
name = "Benton Edmondson";
email = "bentonedmondson@gmail.com";
}];
# potentially others, but I'm only listed those tested
platforms = [ "x86_64-linux" ];
};
};
};