31 lines
605 B
Nix
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
|
|
];
|
|
};
|
|
}
|