mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
aileron-font: init at 0.102
This commit is contained in:
parent
88eb81e19b
commit
c1c432564d
27
pkgs/data/fonts/aileron/default.nix
Normal file
27
pkgs/data/fonts/aileron/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
let
|
||||
majorVersion = "0";
|
||||
minorVersion = "102";
|
||||
pname = "aileron";
|
||||
in
|
||||
|
||||
fetchzip rec {
|
||||
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 stdenv.lib; {
|
||||
homepage = "http://dotcolon.net/font/${pname}/";
|
||||
description = "A helvetica font in nine weights";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ leenaars ];
|
||||
license = licenses.cc0;
|
||||
};
|
||||
}
|
@ -14678,6 +14678,8 @@ with pkgs;
|
||||
|
||||
adapta-backgrounds = callPackage ../data/misc/adapta-backgrounds { };
|
||||
|
||||
aileron = callPackage ../data/fonts/aileron { };
|
||||
|
||||
andagii = callPackage ../data/fonts/andagii { };
|
||||
|
||||
android-udev-rules = callPackage ../os-specific/linux/android-udev-rules { };
|
||||
|
Loading…
Reference in New Issue
Block a user