summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-06-08 23:44:13 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-06-08 23:44:13 -0500
commited33d193cdbd48e285f972ab7dc7867e67b38b22 (patch)
tree37d060299f61ac0dc0ba7453e61c93a9eb31e51e /pkgs/tools/text
parent78e126429fe2b667bd496f11ca3d6fc8e8fdeb08 (diff)
nkf: 2.1.4 -> 2.1.5
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/nkf/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/text/nkf/default.nix b/pkgs/tools/text/nkf/default.nix
index fd38466ce440..8a314d448439 100644
--- a/pkgs/tools/text/nkf/default.nix
+++ b/pkgs/tools/text/nkf/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "nkf-${version}";
- version = "2.1.4";
+ pname = "nkf";
+ version = "2.1.5";
src = fetchurl {
- url = "mirror://osdn/nkf/64158/${name}.tar.gz";
- sha256 = "b4175070825deb3e98577186502a8408c05921b0c8ff52e772219f9d2ece89cb";
+ url = "mirror://osdn/nkf/70406/${pname}-${version}.tar.gz";
+ sha256 = "0i5dbcb9aipwr8ym4mhvgf1in3frl6y8h8x96cprz9s7b11xz9yi";
};
- makeFlags = "prefix=\${out}";
+ makeFlags = [ "prefix=$(out)" ];
meta = {
description = "Tool for converting encoding of Japanese text";
- homepage = http://sourceforge.jp/projects/nkf/;
+ homepage = "https://nkf.osdn.jp/";
license = stdenv.lib.licenses.zlib;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.auntie ];