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
660 B
Nix
Raw Normal View History

2023-05-23 04:30:35 +02: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-23 04:34:16 +02:00
2023-05-23 04:30:35 +02:00
meta = {
description = "A simple command-line utility for Linux, for extracting text from EPUB documents";
2023-05-23 04:30:35 +02:00
homepage = "https://github.com/kevinboone/epub2txt2";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.leonid ];
mainProgram = "epub2txt";
2023-05-23 04:30:35 +02:00
};
}