1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libiconv }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "RAFl/+I+usUfeG/l17F3ltThK7G4+TekyQGwzQIgeH8=";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ libiconv ];
18 description = "Iconv based simplified-traditional chinese conversion tool";
19 mainProgram = "cconv";
20 homepage = "https://github.com/xiaoyjy/cconv";
21 license = licenses.mit;
22 platforms = platforms.all;
23 maintainers = [ maintainers.redfish64 ];