nixpkgs/pkgs/tools/misc/bdfresize/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
592 B
Nix
Raw Normal View History

2022-05-04 21:49:16 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "bdfresize";
version = "1.5";
src = fetchurl {
url = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/${pname}-${version}.tar.gz";
hash = "sha256-RAz8BiCgI35GNSwUoHdMqj8wWXWbCiDe/vyU6EkIl6Y=";
};
patches = [ ./remove-malloc-declaration.patch ];
meta = with lib; {
description = "Tool to resize BDF fonts";
homepage = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/";
license = licenses.gpl2Only;
2023-02-05 14:05:51 +00:00
maintainers = with maintainers; [ malte-v ];
2023-11-27 01:17:53 +00:00
mainProgram = "bdfresize";
2022-05-04 21:49:16 +00:00
};
}