aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/misc/chewing-editor/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/chewing-editor/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/misc/chewing-editor/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/misc/chewing-editor/default.nix b/nixpkgs/pkgs/applications/misc/chewing-editor/default.nix
new file mode 100644
index 00000000000..b70f9a2e7d8
--- /dev/null
+++ b/nixpkgs/pkgs/applications/misc/chewing-editor/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, libchewing, qtbase
+, qttools }:
+
+mkDerivation rec {
+ pname = "chewing-editor";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "chewing";
+ repo = "${pname}";
+ rev = "${version}";
+ sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w";
+ };
+
+ doCheck = true;
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+ buildInputs = [ libchewing qtbase qttools ];
+
+ meta = with stdenv.lib; {
+ description = "Cross platform chewing user phrase editor";
+ longDescription = ''
+ chewing-editor is a cross platform chewing user phrase editor. It provides a easy way to manage user phrase. With it, user can customize their user phrase to increase input performance.
+ '';
+ homepage = "https://github.com/chewing/chewing-editor";
+ license = licenses.gpl2Plus;
+ maintainers = [ maintainers.ShamrockLee ];
+ platforms = platforms.all;
+ };
+}