maintainers: add leonid

This commit is contained in:
Leonid Belyaev 2023-05-22 22:30:35 -04:00
parent b31c968ff2
commit 18ca51617f
3 changed files with 34 additions and 0 deletions

View file

@ -8924,6 +8924,12 @@
githubId = 1572058;
name = "Leonardo Cecchi";
};
leonid = {
email = "belyaev.l@northeastern.edu";
github = "leonidbelyaev";
githubId = 77865363;
name = "Leonid Belyaev";
};
leshainc = {
email = "leshainc@fomalhaut.me";
github = "LeshaInc";

View file

@ -0,0 +1,26 @@
{ 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 ];
};
}

View file

@ -7067,6 +7067,8 @@ with pkgs;
engauge-digitizer = libsForQt5.callPackage ../applications/science/math/engauge-digitizer { };
epub2txt2 = callPackage ../tools/text/epub2txt2 { };
epubcheck = callPackage ../tools/text/epubcheck { };
evil-winrm = callPackage ../tools/security/evil-winrm { };