mona-sans: use finalAttrs pattern

This commit is contained in:
Mario Rodas 2023-09-02 10:30:00 -05:00
parent 6702a59130
commit 0c0688da29

View file

@ -3,12 +3,12 @@
, fetchFromGitHub , fetchFromGitHub
}: }:
stdenvNoCC.mkDerivation rec { stdenvNoCC.mkDerivation (finalAttrs: {
pname = "mona-sans"; pname = "mona-sans";
version = "1.0.1"; version = "1.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = "v${version}"; rev = "v${finalAttrs.version}";
owner = "github"; owner = "github";
repo = "mona-sans"; repo = "mona-sans";
sha256 = "sha256-XvqLFzlgIqx9aZH2SEAtwMiuWgUiDi/gHGSpfreUHuk="; sha256 = "sha256-XvqLFzlgIqx9aZH2SEAtwMiuWgUiDi/gHGSpfreUHuk=";
@ -22,7 +22,7 @@ stdenvNoCC.mkDerivation rec {
meta = { meta = {
description = "A variable font from GitHub"; description = "A variable font from GitHub";
homepage = "https://github.com/github/mona-sans"; homepage = "https://github.com/github/mona-sans";
changelog = "https://github.com/github/mona-sans/releases/tag/v${version}"; changelog = "https://github.com/github/mona-sans/releases/tag/v${finalAttrs.version}";
license = lib.licenses.ofl; license = lib.licenses.ofl;
longDescription = '' longDescription = ''
A strong and versatile typeface, designed together with Degarism and A strong and versatile typeface, designed together with Degarism and
@ -38,4 +38,4 @@ stdenvNoCC.mkDerivation rec {
maintainers = with lib.maintainers; [ drupol ]; maintainers = with lib.maintainers; [ drupol ];
platforms = lib.platforms.all; platforms = lib.platforms.all;
}; };
} })