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
45
pkgs/data/fonts/orbitron/default.nix
Normal file
45
pkgs/data/fonts/orbitron/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ lib, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
version = "20110526";
|
||||
in fetchFromGitHub {
|
||||
name = "orbitron-${version}";
|
||||
|
||||
owner = "theleagueof";
|
||||
repo = "orbitron";
|
||||
rev = "13e6a52";
|
||||
|
||||
postFetch = ''
|
||||
tar xf $downloadedFile --strip=1
|
||||
install -m444 -Dt $out/share/fonts/opentype/orbitron *.otf
|
||||
install -m444 -Dt $out/share/fonts/ttf/orbitron *.ttf
|
||||
'';
|
||||
|
||||
sha256 = "1y9yzvpqs2v3ssnqk2iiglrh8amgsscnk8vmfgnqgqi9f4dhdvnv";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://www.theleagueofmoveabletype.com/orbitron";
|
||||
downloadPage = "https://www.theleagueofmoveabletype.com/orbitron/download";
|
||||
description = "Geometric sans-serif for display purposes by Matt McInerney";
|
||||
longDescription = ''
|
||||
Orbitron is a geometric sans-serif typeface intended for display
|
||||
purposes. It features four weights (light, medium, bold, and
|
||||
black), a stylistic alternative, small caps, and a ton of
|
||||
alternate glyphs.
|
||||
|
||||
Orbitron was designed so that graphic designers in the future
|
||||
will have some alternative to typefaces like Eurostile or Bank
|
||||
Gothic. If you’ve ever seen a futuristic sci-fi movie, you have
|
||||
may noticed that all other fonts have been lost or destroyed in
|
||||
the apocalypse that led humans to flee earth. Only those very few
|
||||
geometric typefaces have survived to be used on spaceship
|
||||
exteriors, space station signage, monopolistic corporate
|
||||
branding, uniforms featuring aerodynamic shoulder pads, etc. Of
|
||||
course Orbitron could also be used on the posters for the movies
|
||||
portraying this inevitable future.
|
||||
'';
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.leenaars ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue