convfont: init at 1.0

This commit is contained in:
luc65r
2020-11-02 20:40:32 +01:00
parent fb3d797242
commit 448729ea16
2 changed files with 31 additions and 0 deletions
+29
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;
};
}
+2
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 { };