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

35 lines
849 B
Nix
Raw Normal View History

2020-02-09 18:05:06 +00:00
{ stdenv, fetchFromGitHub, libfaketime
, fonttosfnt, mkfontscale
}:
2019-02-25 17:12:54 +00:00
stdenv.mkDerivation rec {
pname = "creep";
version = "0.31";
src = fetchFromGitHub {
owner = "romeovs";
repo = pname;
rev = version;
sha256 = "0zs21kznh1q883jfdgz74bb63i4lxlv98hj3ipp0wvsi6zw0vs8n";
};
2020-02-09 18:05:06 +00:00
nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ];
2019-02-25 17:12:54 +00:00
2020-02-09 18:05:06 +00:00
buildPhase = ''
faketime -f "1970-01-01 00:00:01" fonttosfnt -g 2 -m 2 -o creep.otb creep.bdf
'';
2019-02-25 17:12:54 +00:00
installPhase = ''
install -D -m644 creep.otb creep.bdf -t "$out/share/fonts/misc/"
2020-02-09 18:05:06 +00:00
mkfontdir "$out/share/fonts/misc"
2019-02-25 17:12:54 +00:00
'';
meta = with stdenv.lib; {
description = "A pretty sweet 4px wide pixel font";
homepage = "https://github.com/romeovs/creep";
2019-02-25 17:12:54 +00:00
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ buffet ];
};
}