nixpkgs/pkgs/data/fonts/siji/default.nix

27 lines
687 B
Nix
Raw Normal View History

2017-01-29 23:49:25 +00:00
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "siji-${date}";
date = "2016-05-13";
src = fetchFromGitHub {
owner = "stark";
repo = "siji";
rev = "95369afac3e661cb6d3329ade5219992c88688c1";
sha256 = "1408g4nxwdd682vjqpmgv0cp0bfnzzzwls62cjs9zrds16xa9dpf";
};
installPhase = ''
mkdir -p $out/share/fonts/pcf
cp -v */*.pcf $out/share/fonts/pcf
'';
meta = {
homepage = https://github.com/stark/siji;
2017-01-29 23:49:25 +00:00
description = "An iconic bitmap font based on Stlarch with additional glyphs";
liscense = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.asymmetric ];
};
}