merriweather: 2.005 -> 2.200

This commit is contained in:
SkohTV
2026-04-05 17:08:54 -04:00
parent 8fa2c39a08
commit 56d018e6a2
+10 -10
View File
@@ -2,29 +2,29 @@
stdenvNoCC,
lib,
fetchFromGitHub,
installFonts,
}:
stdenvNoCC.mkDerivation rec {
pname = "merriweather";
version = "2.005";
version = "2.200";
src = fetchFromGitHub {
owner = "SorkinType";
repo = "Merriweather";
rev = "4fd88c9299009d1c1d201e7da3ff75cf1de5153a";
sha256 = "1ndycja2jzhcfbqbm0p6ka2zl1i1pdbkf0crw2lp3pi4k89wlm29";
rev = "6e3263d6241aeb747ebfcdd4af3ff8bd1013bb49";
sha256 = "sha256-mpVJpxI98VxHpZMFFyTHjxTPcUTB1kK8XCGa32znMcQ=";
};
# TODO: it would be nice to build this from scratch, but lots of
# Python dependencies to package (fontmake, gftools)
installPhase = ''
install -m444 -Dt $out/share/fonts/opentype/${pname} fonts/otf/*.otf
install -m444 -Dt $out/share/fonts/truetype/${pname} fonts/ttfs/*.ttf
install -m444 -Dt $out/share/fonts/woff/${pname} fonts/woff/*.woff
install -m444 -Dt $out/share/fonts/woff2/${pname} fonts/woff2/*.woff2
# TODO: install variable version?
'';
nativeBuildInputs = [ installFonts ];
outputs = [
"out"
"webfont"
];
meta = {
homepage = "https://github.com/SorkinType/Merriweather";