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

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

27 lines
683 B
Nix
Raw Normal View History

2023-05-23 03:30:35 +01: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=";
};
preConfigure = ''
sed -i Makefile -e 's!DESTDIR)!out)!'
sed -i Makefile -e 's!/usr!!'
'';
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 ];
};
}