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
23
pkgs/data/fonts/rounded-mgenplus/default.nix
Normal file
23
pkgs/data/fonts/rounded-mgenplus/default.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchzip, p7zip }:
|
||||
|
||||
let
|
||||
pname = "rounded-mgenplus";
|
||||
version = "20150602";
|
||||
in fetchzip rec {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
url = "https://osdn.jp/downloads/users/8/8598/${name}.7z";
|
||||
postFetch = ''
|
||||
${p7zip}/bin/7z x $downloadedFile
|
||||
install -m 444 -D -t $out/share/fonts/${pname} ${pname}-*.ttf
|
||||
'';
|
||||
sha256 = "0vwdknagdrl5dqwpb1x5lxkbfgvbx8dpg7cb6yamgz71831l05v1";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Japanese font based on Rounded M+ and Noto Sans Japanese";
|
||||
homepage = "http://jikasei.me/font/rounded-mgenplus/";
|
||||
license = licenses.ofl;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ mnacamura ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue