convfont: init at 1.0

This commit is contained in:
luc65r 2020-10-28 12:04:04 +01:00
parent fb3d797242
commit 448729ea16
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "convfont";
version = "1.0";
src = fetchFromGitHub {
owner = "drdnar";
repo = pname;
rev = "v20190438";
sha256 = "1lj24yq5gj9hxhy1srk73521q95zyqzkws0q4v271hf5wmqaxa2f";
};
makeFlags = [ "CC=cc" ];
installPhase = ''
install -Dm755 convfont $out/bin/convfont
'';
meta = with stdenv.lib; {
description = "Converts font for use with FontLibC";
homepage = "https://github.com/drdnar/convfont";
license = licenses.wtfpl;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.all;
};
}

View file

@ -3076,6 +3076,8 @@ in
convimg = callPackage ../tools/misc/convimg { };
convfont = callPackage ../tools/misc/convfont { };
convmv = callPackage ../tools/misc/convmv { };
convoy = callPackage ../tools/filesystems/convoy { };