7c66fb1ec5
They said they haven't used Nix in a while and is not interested in maintaining cemu-ti (presumably other packages too), so I asked to take over his role. I removed luc65r from the meta.maintainers attribtes, and adopted the packages I wanted to adopt. I chose to adopt the TI graphing calculator-related packages as I am part of Cemetech.
31 lines
671 B
Nix
31 lines
671 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=${stdenv.cc.targetPrefix}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; [ clevor ];
|
|
platforms = platforms.all;
|
|
mainProgram = "convfont";
|
|
};
|
|
}
|