evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cc / cconv / package.nix
blobc47b6371d34536e6a37eaad66b3d20fee929953c
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 ];
16   configureFlags = lib.optional stdenv.hostPlatform.isDarwin "LDFLAGS=-liconv";
18   meta = with lib; {
19     description = "Iconv based simplified-traditional chinese conversion tool";
20     mainProgram = "cconv";
21     homepage = "https://github.com/xiaoyjy/cconv";
22     license = licenses.mit;
23     platforms = platforms.all;
24     maintainers = [ maintainers.redfish64 ];
25   };