7 stdenv.mkDerivation rec {
11 # Original site http://sofia.nmsu.edu/~mleisher/Software/otf2bdf/ unreachable,
13 src = fetchFromGitHub {
17 hash = "sha256-HK9ZrnwKhhYcBvSl+3RwFD7m/WSaPkGKX6utXnk5k+A=";
20 buildInputs = [ freetype ];
23 mkdir -p $out/bin $out/share/man/man1
24 install otf2bdf $out/bin
25 cp otf2bdf.man $out/share/man/man1/otf2bdf.1
29 #homepage = "http://sofia.nmsu.edu/~mleisher/Software/otf2bdf/"; # timeout
30 homepage = "https://github.com/jirutka/otf2bdf";
31 description = "OpenType to BDF font converter";
32 license = licenses.mit0;
33 platforms = platforms.all;
34 maintainers = with maintainers; [ hzeller ];