biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / cconv / default.nix
blob872db0a44970ea6297f0c27692c9291023fbe437
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "cconv";
5   version = "0.6.3";
7   src = fetchFromGitHub {
8     owner = "xiaoyjy";
9     repo = "cconv";
10     rev = "v${version}";
11     sha256 = "RAFl/+I+usUfeG/l17F3ltThK7G4+TekyQGwzQIgeH8=";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ libiconv ];
17   meta = with lib; {
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 ];
24   };