nixpkgs/pkgs/tools/text/cconv/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
627 B
Nix
Raw Normal View History

2021-09-19 20:59:16 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, libiconv }:
2021-03-04 07:13:10 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "cconv";
2021-03-04 07:13:10 +00:00
version = "0.6.3";
2021-09-19 20:59:16 +00:00
src = fetchFromGitHub {
owner = "xiaoyjy";
repo = "cconv";
rev = "v${version}";
sha256 = "RAFl/+I+usUfeG/l17F3ltThK7G4+TekyQGwzQIgeH8=";
2018-03-31 08:30:33 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
2021-03-04 07:13:10 +00:00
buildInputs = [ libiconv ];
meta = with lib; {
2018-03-31 08:30:33 +00:00
description = "A iconv based simplified-traditional chinese conversion tool";
homepage = "https://github.com/xiaoyjy/cconv";
2018-03-31 08:30:33 +00:00
license = licenses.mit;
2021-03-04 07:13:10 +00:00
platforms = platforms.all;
2018-03-31 08:30:33 +00:00
maintainers = [ maintainers.redfish64 ];
};
}