1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/tools/text/nkf/default.nix

22 lines
573 B
Nix
Raw Normal View History

2015-02-20 16:14:26 -05:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "nkf-${version}";
version = "2.1.3";
src = fetchurl {
url = "mirror://sourceforgejp/nkf/59912/${name}.tar.gz";
sha256 = "8cb430ae69a1ad58b522eb4927b337b5b420bbaeb69df255919019dc64b72fc2";
};
makeFlags = "prefix=\${out}";
meta = {
2015-02-21 16:35:01 -05:00
description = "Tool for converting encoding of Japanese text";
2015-02-20 16:14:26 -05:00
homepage = "http://sourceforge.jp/projects/nkf/";
license = stdenv.lib.licenses.zlib;
2015-02-21 16:35:01 -05:00
platforms = stdenv.lib.platforms.unix;
2015-02-20 16:14:26 -05:00
maintainers = [ stdenv.lib.maintainers.auntie ];
};
}