mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
33 lines
752 B
Nix
33 lines
752 B
Nix
{ lib, stdenvNoCC, fetchzip }:
|
|
|
|
let
|
|
majorVersion = "0";
|
|
minorVersion = "100";
|
|
in
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "fa_1";
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
src = fetchzip {
|
|
url = "https://dotcolon.net/download/fonts/fa_1_${majorVersion}${minorVersion}.zip";
|
|
hash = "sha256-BPJ+wZMYXY/yg5oEgBc5YnswA6A7w6V0gdv+cac0qdc=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m444 -t $out/share/fonts/opentype $src/*.otf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://dotcolon.net/font/fa_1/";
|
|
description = "Weighted decorative font";
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ minijackson ];
|
|
license = licenses.ofl;
|
|
};
|
|
}
|