32 lines
665 B
Nix
32 lines
665 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "epub2txt2";
|
|
version = "2.08";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kevinboone";
|
|
repo = pname;
|
|
tag = "v${version}";
|
|
sha256 = "sha256-YFaXkcIdat2cn1ITYFyG1hxbbepqcxvyJ6ZzDo4dVYI=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"CC:=$(CC)"
|
|
"PREFIX:=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple command-line utility for Linux, for extracting text from EPUB documents";
|
|
homepage = "https://github.com/kevinboone/epub2txt2";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.leonid ];
|
|
mainProgram = "epub2txt";
|
|
};
|
|
}
|