2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libfaketime
|
2020-02-09 18:05:06 +00:00
|
|
|
, 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 = ''
|
2020-08-21 13:18:18 +01:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-02-25 17:12:54 +00:00
|
|
|
description = "A pretty sweet 4px wide pixel font";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/romeovs/creep";
|
2019-02-25 17:12:54 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ buffet ];
|
|
|
|
};
|
|
|
|
}
|