biblatex-check: init at 2019-11-09

This commit is contained in:
Will Dietz 2020-01-25 22:42:29 -06:00
parent ac2699fdca
commit 93656d56d3
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, python }:
stdenv.mkDerivation {
pname = "biblatex-check";
version = "2019-11-09";
src = fetchFromGitHub {
owner = "Pezmc";
repo = "BibLatex-Check";
rev = "2db50bf94d1480f37edf1b3619e73baf4ef85938";
sha256 = "1bq0yqckhssazwkivipdjmn1jpsf301i4ppyl88qhc5igx39wg25";
};
buildInputs = [ python ];
installPhase = ''
install -Dm755 biblatex_check.py $out/bin/biblatex-check
'';
meta = with stdenv.lib; {
description = "Python2/3 script for checking BibLatex .bib files";
homepage = "https://github.com/Pezmc/BibLatex-Check";
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -2263,6 +2263,8 @@ in
biber = callPackage ../tools/typesetting/biber { };
biblatex-check = callPackage ../tools/typesetting/biblatex-check { };
birdfont = callPackage ../tools/misc/birdfont { };
xmlbird = callPackage ../tools/misc/birdfont/xmlbird.nix { };