nixpkgs-suyu/pkgs/data/fonts/agave/default.nix

27 lines
679 B
Nix
Raw Normal View History

{ lib, fetchurl }:
2019-01-17 22:07:35 +01:00
let
2019-02-07 16:32:42 +01:00
pname = "agave";
version = "14";
in fetchurl {
name = "${pname}-${version}";
url = "https://github.com/agarick/agave/releases/download/v${version}/Agave-Regular.ttf";
2019-01-17 22:07:35 +01:00
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
install -D $downloadedFile $out/share/fonts/truetype/Agave-Regular.ttf
2019-01-17 22:07:35 +01:00
'';
sha256 = "14hr6cdn5xbfpszj4qyfqbwmjyrkmi83yl0g9j3y3jw561jwy27j";
meta = with lib; {
2019-01-17 22:07:35 +01:00
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;
};
}