depot/third_party/nixpkgs/pkgs/tools/misc/convfont/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

29 lines
616 B
Nix

{ lib, 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 lib; {
description = "Converts font for use with FontLibC";
homepage = "https://github.com/drdnar/convfont";
license = licenses.wtfpl;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.all;
};
}