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

22 lines
542 B
Nix
Raw Normal View History

2015-02-20 21:14:26 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2019-06-09 04:44:13 +00:00
pname = "nkf";
version = "2.1.5";
2015-02-20 21:14:26 +00:00
src = fetchurl {
2019-06-09 04:44:13 +00:00
url = "mirror://osdn/nkf/70406/${pname}-${version}.tar.gz";
sha256 = "0i5dbcb9aipwr8ym4mhvgf1in3frl6y8h8x96cprz9s7b11xz9yi";
2015-02-20 21:14:26 +00:00
};
2019-06-09 04:44:13 +00:00
makeFlags = [ "prefix=$(out)" ];
2015-02-20 21:14:26 +00:00
meta = {
2015-02-21 21:35:01 +00:00
description = "Tool for converting encoding of Japanese text";
2019-06-09 04:44:13 +00:00
homepage = "https://nkf.osdn.jp/";
2015-02-20 21:14:26 +00:00
license = stdenv.lib.licenses.zlib;
2015-02-21 21:35:01 +00:00
platforms = stdenv.lib.platforms.unix;
2015-02-20 21:14:26 +00:00
maintainers = [ stdenv.lib.maintainers.auntie ];
};
}