Skip to content

Commit

Permalink
Merge pull request #78505 from dtzWill/feature/biblatex-check
Browse files Browse the repository at this point in the history
biblatex-check: init at 2019-11-09
  • Loading branch information
dtzWill committed Feb 13, 2020
2 parents 21e5e80 + 93656d5 commit 3914b80
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/typesetting/biblatex-check/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand Down

0 comments on commit 3914b80

Please sign in to comment.