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

22 lines
571 B
Nix
Raw Normal View History

2015-02-20 21:14:26 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "nkf-${version}";
2017-02-05 22:08:05 +00:00
version = "2.1.4";
2015-02-20 21:14:26 +00:00
src = fetchurl {
2017-02-05 22:08:05 +00:00
url = "mirror://sourceforgejp/nkf/64158/${name}.tar.gz";
sha256 = "b4175070825deb3e98577186502a8408c05921b0c8ff52e772219f9d2ece89cb";
2015-02-20 21:14:26 +00:00
};
makeFlags = "prefix=\${out}";
meta = {
2015-02-21 21:35:01 +00:00
description = "Tool for converting encoding of Japanese text";
homepage = http://sourceforge.jp/projects/nkf/;
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 ];
};
}