creep: init at 0.31 (#56264)

This commit is contained in:
Niclas 2019-02-25 18:12:54 +01:00 committed by Will Dietz
parent c3a3ae1961
commit 5082ab8335
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, fontforge }:
stdenv.mkDerivation rec {
pname = "creep";
version = "0.31";
src = fetchFromGitHub {
owner = "romeovs";
repo = pname;
rev = version;
sha256 = "0zs21kznh1q883jfdgz74bb63i4lxlv98hj3ipp0wvsi6zw0vs8n";
};
nativeBuildInputs = [ fontforge ];
dontBuild = true;
installPhase = ''
install -D -m644 creep.bdf "$out/usr/share/fonts/misc/creep.bdf"
'';
meta = with stdenv.lib; {
description = "A pretty sweet 4px wide pixel font";
homepage = https://github.com/romeovs/creep;
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ buffet ];
};
}

View File

@ -15495,6 +15495,8 @@ in
cm_unicode = callPackage ../data/fonts/cm-unicode {};
creep = callPackage ../data/fonts/creep { };
crimson = callPackage ../data/fonts/crimson {};
dejavu_fonts = lowPrio (callPackage ../data/fonts/dejavu-fonts {});