mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
fbafeb7ad5
This has been synonymous for ~5y.
19 lines
523 B
Nix
19 lines
523 B
Nix
{ lib, runCommand, powerline }:
|
|
|
|
let
|
|
inherit (powerline) version;
|
|
in runCommand "powerline-symbols-${version}" {
|
|
meta = {
|
|
inherit (powerline.meta) license;
|
|
priority = (powerline.meta.priority or 0) + 1;
|
|
maintainers = with lib.maintainers; [ midchildan ];
|
|
};
|
|
} ''
|
|
install -Dm644 \
|
|
${powerline.src}/font/PowerlineSymbols.otf \
|
|
$out/share/fonts/OTF/PowerlineSymbols.otf
|
|
install -Dm644 \
|
|
${powerline.src}/font/10-powerline-symbols.conf \
|
|
$out/etc/fonts/conf.d/10-powerline-symbols.conf
|
|
''
|