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
66
pkgs/data/misc/rime-data/default.nix
Normal file
66
pkgs/data/misc/rime-data/default.nix
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
{ lib, stdenv, fetchFromGitHub, librime }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rime-data";
|
||||
version = "0.38.20211002";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "plum";
|
||||
rev = "1730556e1da5a08bb8e0a656c4780a46851a2913";
|
||||
sha256 = "sha256-D7rPUxcB3QkCtisfBLHPiqfgL5lqmxjSiuEcpE63elw=";
|
||||
};
|
||||
|
||||
buildInputs = [ librime ];
|
||||
|
||||
buildFlags = [ "all" ];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
preBuild = import ./fetchSchema.nix fetchFromGitHub;
|
||||
|
||||
postPatch = ''
|
||||
# Disable git operations.
|
||||
sed -i /fetch_or_update_package$/d scripts/install-packages.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Schema data of Rime Input Method Engine";
|
||||
longDescription = ''
|
||||
Rime-data provides schema data for Rime Input Method Engine.
|
||||
'';
|
||||
homepage = "https://rime.im";
|
||||
license = with licenses; [
|
||||
# rime-array
|
||||
# rime-combo-pinyin
|
||||
# rime-double-pinyin
|
||||
# rime-middle-chinese
|
||||
# rime-scj
|
||||
# rime-soutzoe
|
||||
# rime-stenotype
|
||||
# rime-wugniu
|
||||
gpl3Only
|
||||
|
||||
# plum
|
||||
# rime-bopomofo
|
||||
# rime-cangjie
|
||||
# rime-emoji
|
||||
# rime-essay
|
||||
# rime-ipa
|
||||
# rime-jyutping
|
||||
# rime-luna-pinyin
|
||||
# rime-prelude
|
||||
# rime-quick
|
||||
# rime-stroke
|
||||
# rime-terra-pinyin
|
||||
# rime-wubi
|
||||
lgpl3Only
|
||||
|
||||
# rime-pinyin-simp
|
||||
asl20
|
||||
|
||||
# rime-cantonese
|
||||
cc-by-40
|
||||
];
|
||||
maintainers = with maintainers; [ pmy ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue