27 lines
681 B
Nix
27 lines
681 B
Nix
|
{ lib, fetchurl }:
|
||
|
|
||
|
let
|
||
|
pname = "agave";
|
||
|
version = "14";
|
||
|
in fetchurl {
|
||
|
name = "${pname}-${version}";
|
||
|
url = "https://github.com/agarick/agave/releases/download/v${version}/Agave-Regular.ttf";
|
||
|
|
||
|
downloadToTemp = true;
|
||
|
recursiveHash = true;
|
||
|
postFetch = ''
|
||
|
install -D $downloadedFile $out/share/fonts/truetype/Agave-Regular.ttf
|
||
|
'';
|
||
|
|
||
|
sha256 = "14hr6cdn5xbfpszj4qyfqbwmjyrkmi83yl0g9j3y3jw561jwy27j";
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "truetype monospaced typeface designed for X environments";
|
||
|
homepage = "https://b.agaric.net/page/agave";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ dtzWill ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|
||
|
|