1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/data/fonts/gohufont/default.nix

30 lines
738 B
Nix
Raw Normal View History

{ stdenv, fetchurl, mkfontdir, mkfontscale }:
stdenv.mkDerivation rec {
name = "gohufont-2.0";
src = fetchurl {
url = "http://font.gohu.org/gohufont-2.0.tar.gz";
sha256 = "0vi87fvj3m52piz2k6vqday03cah6zvz3dzrvjch3qjna1i1nb7s";
};
buildInputs = [ mkfontdir mkfontscale ];
installPhase = ''
fontDir="$out/share/fonts/misc"
mkdir -p "$fontDir"
mv *.pcf.gz "$fontDir"
cd "$fontDir"
mkfontdir
mkfontscale
'';
meta = with stdenv.lib; {
description = "A monospace bitmap font well suited for programming and terminal use";
homepage = http://font.gohu.org/;
license = licenses.wtfpl;
maintainers = with maintainers; [ epitrochoid ];
platforms = with platforms; linux;
};
}