mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
50 lines
615 B
Nix
50 lines
615 B
Nix
{ lib
|
|
, symlinkJoin
|
|
, aileron
|
|
, vegur
|
|
, f5_6
|
|
, tenderness
|
|
, medio
|
|
, ferrum
|
|
, seshat
|
|
, penna
|
|
, eunomia
|
|
, route159
|
|
, f1_8
|
|
, nacelle
|
|
, melete
|
|
, fa_1
|
|
}:
|
|
|
|
symlinkJoin {
|
|
name = "dotcolon-fonts";
|
|
|
|
paths = [
|
|
aileron
|
|
vegur
|
|
f5_6
|
|
tenderness
|
|
medio
|
|
ferrum
|
|
seshat
|
|
penna
|
|
eunomia
|
|
route159
|
|
f1_8
|
|
nacelle
|
|
melete
|
|
fa_1
|
|
];
|
|
|
|
meta = {
|
|
description = "Font Collection by Sora Sagano";
|
|
|
|
homepage = "https://dotcolon.net/";
|
|
|
|
license = with lib.licenses; [ cc0 ofl ];
|
|
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ minijackson ];
|
|
};
|
|
}
|