Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions pkgs/by-name/eb/eb-garamond/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
stdenvNoCC,
fetchFromGitHub,
python3,
ttfautohint,
ttfautohint-nox,
}:
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "eb-garamond";
version = "0.016";

src = fetchFromGitHub {
owner = "georgd";
repo = "EB-Garamond";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-ajieKhTeH6yv2qiE2xqnHFoMS65//4ZKiccAlC2PXGQ=";
};

nativeBuildInputs = [
(python3.withPackages (p: [ p.fontforge ]))
ttfautohint
ttfautohint-nox
];

postPatch = ''
Expand All @@ -42,15 +42,15 @@ stdenvNoCC.mkDerivation rec {
runHook postInstall
'';

meta = with lib; {
meta = {
homepage = "http://www.georgduffner.at/ebgaramond/";
description = "Digitization of the Garamond shown on the Egenolff-Berner specimen";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
bengsparks
relrod
rycee
];
license = licenses.ofl;
platforms = platforms.all;
license = lib.licenses.ofl;
platforms = lib.platforms.all;
};
}
})
Loading