mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
25 lines
661 B
Nix
25 lines
661 B
Nix
{ 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)" ];
|
|
|
|
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";
|
|
};
|
|
}
|