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

22 lines
621 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, autoreconfHook }:
2018-03-31 08:30:33 +00:00
let version = "0.6.3"; in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "cconv";
inherit version;
2018-03-31 08:30:33 +00:00
src = fetchurl {
url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
sha256 = "82f46a94829f5a8157d6f686e302ff5710108931973e133d6e19593061b81d84";
};
nativeBuildInputs = [ autoreconfHook ];
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;
platforms = platforms.linux;
maintainers = [ maintainers.redfish64 ];
};
}