mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #78506 from dtzWill/feature/bibclean
bibclean: init at 3.03
This commit is contained in:
commit
728da4bd0b
26
pkgs/tools/typesetting/bibclean/default.nix
Normal file
26
pkgs/tools/typesetting/bibclean/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bibclean";
|
||||
version = "3.03";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.math.utah.edu/pub/bibclean/bibclean-${version}.tar.xz";
|
||||
sha256 = "06ic9zix8gh1wz7hd1cnlxxyrp7sqs67a7xnv08r71b5ikri35a3";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile.in --replace man/man1 share/man/man1
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin $out/share/man/man1
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Prettyprint and syntax check BibTeX and Scribe bibliography data base files";
|
||||
homepage = "http://ftp.math.utah.edu/pub/bibclean";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
};
|
||||
}
|
@ -2261,6 +2261,8 @@ in
|
||||
|
||||
bgs = callPackage ../tools/X11/bgs { };
|
||||
|
||||
bibclean = callPackage ../tools/typesetting/bibclean { };
|
||||
|
||||
biber = callPackage ../tools/typesetting/biber { };
|
||||
|
||||
biblatex-check = callPackage ../tools/typesetting/biblatex-check { };
|
||||
|
Loading…
Reference in New Issue
Block a user