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

27 lines
681 B
Nix
Raw Normal View History

{ lib, fetchurl }:
2019-01-17 21:07:35 +00:00
let
2019-02-07 15:32:42 +00:00
pname = "agave";
version = "22";
in fetchurl {
name = "${pname}-${version}";
url = "https://github.com/agarick/agave/releases/download/v${version}/Agave-Regular.ttf";
2019-01-17 21:07:35 +00:00
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
install -D $downloadedFile $out/share/fonts/truetype/Agave-Regular.ttf
2019-01-17 21:07:35 +00:00
'';
sha256 = "1jb8f0xcv5z0l5nyx733b6zclswi82vrh2nwyyhbqzgqrl4y1h6s";
meta = with lib; {
2019-01-17 21:07:35 +00:00
description = "truetype monospaced typeface designed for X environments";
homepage = "https://b.agaric.net/page/agave";
2019-01-17 21:07:35 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
platforms = platforms.all;
};
}