nixpkgs/pkgs/data/fonts/f1_8/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

34 lines
806 B
Nix

{ lib, stdenvNoCC, fetchzip }:
let
majorVersion = "1";
minorVersion = "101";
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "f1_8";
version = "${majorVersion}.${minorVersion}";
src = fetchzip {
url = "https://note.com/api/v2/attachments/download/d83b2c4ec63d7826acaa76725d261ff4";
hash = "sha256-pe1G8WeFAo+KYjjsNwn0JmtXFn9QugE1SeGwaqnl1F0=";
stripRoot = false;
extension = "zip";
};
installPhase = ''
runHook preInstall
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
runHook postInstall
'';
meta = with lib; {
homepage = "http://dotcolon.net/font/${finalAttrs.pname}/";
description = "Weighted decorative font";
platforms = platforms.all;
maintainers = with maintainers; [ minijackson ];
license = licenses.ofl;
};
})