nix/pkgs/indico-fonts/default.nix
Jeltz d12f9d91d1
WIP: Add indico profile + required packages
Signed-off-by: Jeltz <jeltz@federez.net>
2025-04-05 21:19:32 +02:00

31 lines
605 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
}:
buildPythonPackage rec {
pname = "indico-fonts";
version = "1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "indico";
repo = "indico-fonts";
rev = "refs/tags/v${version}";
hash = "sha256-tqpsmthcg9BXxoM/cii+dtXzw0vgu8sek/F1cVNTu+8=";
};
build-system = [ setuptools ];
meta = {
description = "Indico binary fonts";
homepage = "https://github.com/indico/indico-fonts";
license = [
lib.licenses.ofl
lib.licenses.arphicpl
# TODO indico_fonts/LICENSE-efont
];
};
}