nixpkgs/pkgs/development/libraries/libchewing/default.nix

26 lines
643 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, sqlite, cmake }:
2015-11-25 05:50:40 +00:00
stdenv.mkDerivation rec {
pname = "libchewing";
version = "unstable-2020-06-27";
2015-11-25 05:50:40 +00:00
src = fetchFromGitHub {
owner = "chewing";
repo = "libchewing";
rev = "452f6221fbad90c0706a3963b17e226216e40dd7";
sha256 = "sha256-w3/K2O/CU+XVzqzVCYJyq1vLgToN6iIUhJ9J7ia4p9E=";
2015-11-25 05:50:40 +00:00
};
buildInputs = [ sqlite ];
nativeBuildInputs = [ cmake ];
meta = with lib; {
2015-11-25 05:50:40 +00:00
description = "Intelligent Chinese phonetic input method";
homepage = "http://chewing.im/";
license = licenses.lgpl21Only;
2015-11-25 05:50:40 +00:00
maintainers = [ maintainers.ericsagnes ];
platforms = platforms.linux;
};
}