0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
22 lines
660 B
Nix
22 lines
660 B
Nix
# when changing this expression convert it from 'fetchzip' to 'stdenvNoCC.mkDerivation'
|
|
{ lib, fetchzip }:
|
|
|
|
let
|
|
pname = "mno16";
|
|
version = "1.0";
|
|
in (fetchzip rec {
|
|
name = "${pname}-${version}";
|
|
url = "https://github.com/sevmeyer/${pname}/releases/download/${version}/${name}.zip";
|
|
sha256 = "1x06nl281fcjk6g1p4cgrgxakmwcci6vvasskaygsqlzxd8ig87w";
|
|
|
|
meta = with lib; {
|
|
description = "minimalist monospaced font";
|
|
homepage = "https://sev.dev/fonts/mno16";
|
|
license = licenses.cc0;
|
|
};
|
|
}).overrideAttrs (_: {
|
|
postFetch = ''
|
|
mkdir -p $out/share/fonts/truetype
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype/
|
|
'';
|
|
})
|