brygada-1918: init at 3.006 (#363767)

This commit is contained in:
Arne Keller
2024-12-12 19:09:31 +01:00
committed by GitHub
2 changed files with 43 additions and 0 deletions
+5
View File
@@ -16532,6 +16532,11 @@
githubId = 7249506;
name = "oida";
};
oidro = {
github = "oidro";
githubId = 31112680;
name = "oidro";
};
ok-nick = {
email = "nick.libraries@gmail.com";
github = "ok-nick";
+38
View File
@@ -0,0 +1,38 @@
{
lib,
stdenvNoCC,
fetchFromGitHub,
}:
stdenvNoCC.mkDerivation {
pname = "brygada-1918";
version = "3.006";
src = fetchFromGitHub {
owner = "kosmynkab";
repo = "Brygada-1918";
rev = "8325dc36ca87b8c7b8909c3e048fe90fd7e46c4b";
hash = "sha256-ePehnBYFlm+iExf2Sy25PsIWvtHlys2hcCZ4cHT+H1k=";
};
dontConfigure = true;
dontBuild = true;
installPhase = ''
runHook preInstall
install -Dm444 -t $out/share/fonts/opentype fonts/otf/*.otf
install -Dm444 -t $out/share/fonts/truetype fonts/ttf/*.ttf
install -Dm444 -t $out/share/fonts/variable fonts/variable/*.ttf
runHook postInstall
'';
meta = {
description = "Digital revival of the Brygada serif typeface";
homepage = "https://brygada1918.eu/";
license = lib.licenses.ofl;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ oidro ];
};
}