1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/data/fonts/aileron/default.nix

28 lines
676 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2018-08-20 00:56:48 +01:00
let
majorVersion = "0";
minorVersion = "102";
pname = "aileron";
in
2019-08-13 22:52:01 +01:00
fetchzip {
2018-08-20 00:56:48 +01:00
name = "${pname}-font-${majorVersion}.${minorVersion}";
url = "http://dotcolon.net/DL/font/${pname}.zip";
sha256 = "04xnzdy9plzd2p02yq367h37m5ygx0w8cpkdv39cc3754ljlsxim";
postFetch = ''
mkdir -p $out/share/fonts/opentype/${pname}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype/${pname}
'';
meta = with lib; {
2018-08-20 00:56:48 +01:00
homepage = "http://dotcolon.net/font/${pname}/";
description = "A helvetica font in nine weights";
platforms = platforms.all;
maintainers = with maintainers; [ leenaars ];
license = licenses.cc0;
};
}