nixpkgs/pkgs/by-name/fa/fa_1/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
759 B
Nix
Raw Permalink Normal View History

2023-01-22 12:32:04 +01:00
{
lib,
stdenvNoCC,
fetchzip,
}:
let
majorVersion = "0";
minorVersion = "100";
in
2024-07-12 21:59:02 -04:00
stdenvNoCC.mkDerivation {
2023-01-22 12:32:04 +01:00
pname = "fa_1";
version = "${majorVersion}.${minorVersion}";
src = fetchzip {
url = "https://dotcolon.net/download/fonts/fa_1_${majorVersion}${minorVersion}.zip";
2023-01-22 12:32:04 +01:00
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/";
2023-01-22 12:32:04 +01:00
description = "Weighted decorative font";
platforms = platforms.all;
maintainers = with maintainers; [ minijackson ];
license = licenses.ofl;
};
2024-07-12 21:59:02 -04:00
}