nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 30 lines 918 B view raw
1{ lib, mkDerivation, fetchFromGitHub, cmake, pkg-config, libchewing, qtbase 2, qttools }: 3 4mkDerivation rec { 5 pname = "chewing-editor"; 6 version = "0.1.1"; 7 8 src = fetchFromGitHub { 9 owner = "chewing"; 10 repo = pname; 11 rev = version; 12 sha256 = "0kc2hjx1gplm3s3p1r5sn0cyxw3k1q4gyv08q9r6rs4sg7xh2w7w"; 13 }; 14 15 doCheck = true; 16 17 nativeBuildInputs = [ cmake pkg-config ]; 18 buildInputs = [ libchewing qtbase qttools ]; 19 20 meta = with lib; { 21 description = "Cross platform chewing user phrase editor"; 22 longDescription = '' 23 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. 24 ''; 25 homepage = "https://github.com/chewing/chewing-editor"; 26 license = licenses.gpl2Plus; 27 maintainers = [ maintainers.ShamrockLee ]; 28 platforms = platforms.all; 29 }; 30}