python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / bibclean / default.nix
blob4003195717841b6e622718668ae773cc8d430fa4
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "bibclean";
5   version = "3.06";
7   src = fetchurl {
8     url = "http://ftp.math.utah.edu/pub/bibclean/bibclean-${version}.tar.xz";
9     sha256 = "sha256-ZXT5uAQrqPoF6uVBazc4o1w40Sn0jnM+JYeOz7qq3kM=";
10   };
12   postPatch = ''
13     substituteInPlace Makefile.in --replace man/man1 share/man/man1
14   '';
16   preInstall = ''
17     mkdir -p $out/bin $out/share/man/man1
18   '';
20   meta = with lib; {
21     description = "Prettyprint and syntax check BibTeX and Scribe bibliography data base files";
22     homepage = "http://ftp.math.utah.edu/pub/bibclean";
23     license = licenses.gpl2;
24     platforms = platforms.all;
25     maintainers = with maintainers; [ dtzWill ];
26   };