commit
377f6f39f1
3 changed files with 27 additions and 0 deletions
|
@ -2974,6 +2974,11 @@
|
|||
github = "redbaron";
|
||||
name = "Maxim Ivanov";
|
||||
};
|
||||
redfish64 = {
|
||||
email = "engler@gmail.com";
|
||||
github = "redfish64";
|
||||
name = "Tim Engler";
|
||||
};
|
||||
redvers = {
|
||||
email = "red@infect.me";
|
||||
github = "redvers";
|
||||
|
|
20
pkgs/tools/text/cconv/default.nix
Normal file
20
pkgs/tools/text/cconv/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, autoreconfHook }:
|
||||
let version = "0.6.3"; in
|
||||
stdenv.mkDerivation {
|
||||
name = "cconv-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/xiaoyjy/cconv/archive/v${version}.tar.gz";
|
||||
sha256 = "82f46a94829f5a8157d6f686e302ff5710108931973e133d6e19593061b81d84";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A iconv based simplified-traditional chinese conversion tool";
|
||||
homepage = https://github.com/xiaoyjy/cconv;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.redfish64 ];
|
||||
};
|
||||
}
|
|
@ -611,6 +611,8 @@ with pkgs;
|
|||
|
||||
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
||||
|
||||
cconv = callPackage ../tools/text/cconv { };
|
||||
|
||||
chkcrontab = callPackage ../tools/admin/chkcrontab { };
|
||||
|
||||
djmount = callPackage ../tools/filesystems/djmount { };
|
||||
|
|
Loading…
Reference in a new issue