convfont: init at 1.0
This commit is contained in:
parent
fb3d797242
commit
448729ea16
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/misc/convfont/default.nix
Normal file
29
pkgs/tools/misc/convfont/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue