uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
18
pkgs/data/fonts/powerline-symbols/default.nix
Normal file
18
pkgs/data/fonts/powerline-symbols/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ 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
|
||||
''
|
||||
Loading…
Add table
Add a link
Reference in a new issue