python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bdfresize / default.nix
blobf1ac559fb672dcdb8f777d945f0dc5d990bfbae7
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "bdfresize";
5   version = "1.5";
7   src = fetchurl {
8     url = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/${pname}-${version}.tar.gz";
9     hash = "sha256-RAz8BiCgI35GNSwUoHdMqj8wWXWbCiDe/vyU6EkIl6Y=";
10   };
12   patches = [ ./remove-malloc-declaration.patch ];
14   meta = with lib; {
15     description = "Tool to resize BDF fonts";
16     homepage = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/";
17     license = licenses.gpl2Only;
18     maintainers = with maintainers; [ malvo ];
19   };