depot/third_party/nixpkgs/pkgs/by-name/ol/oldstandard/package.nix

33 lines
818 B
Nix

{
lib,
stdenvNoCC,
fetchzip,
}:
stdenvNoCC.mkDerivation rec {
pname = "oldstandard";
version = "2.2";
src = fetchzip {
url = "https://github.com/akryukov/oldstand/releases/download/v${version}/${pname}-${version}.otf.zip";
stripRoot = false;
hash = "sha256-cDB5KJm87DK+GczZ3Nmn4l5ejqViswVbwrJ9XbhEh8I=";
};
installPhase = ''
runHook preInstall
install -m444 -Dt $out/share/fonts/opentype *.otf
install -m444 -Dt $out/share/doc/${pname}-${version} FONTLOG.txt
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/akryukov/oldstand";
description = "Attempt to revive a specific type of Modern style of serif typefaces";
maintainers = with maintainers; [ raskin ];
license = licenses.ofl;
platforms = platforms.all;
};
}