nixpkgs/pkgs/tools/text/epub2txt2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
661 B
Nix
Raw Normal View History

2023-05-22 22:30:35 -04:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "epub2txt2";
version = "2.06";
src = fetchFromGitHub {
owner = "kevinboone";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-zzcig5XNh9TqUHginsfoC47WrKavqi6k6ezir+OOMJk=";
};
makeFlags = [ "CC:=$(CC)" "PREFIX:=$(out)" ];
2023-05-22 22:34:16 -04:00
2023-05-22 22:30:35 -04:00
meta = {
description = "A 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";
2023-05-22 22:30:35 -04:00
};
}