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
25
pkgs/development/libraries/libchewing/default.nix
Normal file
25
pkgs/development/libraries/libchewing/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchFromGitHub, sqlite, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libchewing";
|
||||
version = "unstable-2020-06-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chewing";
|
||||
repo = "libchewing";
|
||||
rev = "452f6221fbad90c0706a3963b17e226216e40dd7";
|
||||
sha256 = "sha256-w3/K2O/CU+XVzqzVCYJyq1vLgToN6iIUhJ9J7ia4p9E=";
|
||||
};
|
||||
|
||||
buildInputs = [ sqlite ];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Intelligent Chinese phonetic input method";
|
||||
homepage = "http://chewing.im/";
|
||||
license = licenses.lgpl21Only;
|
||||
maintainers = [ maintainers.ericsagnes ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue