summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2022-02-25 15:11:15 +0100
committerGitHub <noreply@github.com>2022-02-25 15:11:15 +0100
commit443980e294667083b1fae386f782f97d7e074da8 (patch)
tree4a031262f4bea374207b611752c5e2597c25d398 /pkgs/tools/text
parent36fae616c6ccaeb1731f4d1aae248807d3d73cde (diff)
recode: 3.7.9 -> 3.7.12
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/recode/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/tools/text/recode/default.nix b/pkgs/tools/text/recode/default.nix
index ce377fada9f38..8c49fb5ee7fcf 100644
--- a/pkgs/tools/text/recode/default.nix
+++ b/pkgs/tools/text/recode/default.nix
@@ -2,24 +2,27 @@
 
 stdenv.mkDerivation rec {
   pname = "recode";
-  version = "3.7.9";
+  version = "3.7.12";
 
   # Use official tarball, avoid need to bootstrap/generate build system
   src = fetchurl {
     url = "https://github.com/rrthomas/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
-    sha256 = "sha256-5DIKaw9c2DfNtFT7WFQBjd+pcJEWCOHwHMLGX2M2csQ=";
+    hash = "sha256-TbHJB28E26oVlyb1AAhH5eWoOuyOXGT4ygQ4P2zaEtU=";
   };
 
   nativeBuildInputs = [ python3 python3.pkgs.cython perl intltool flex texinfo libiconv ];
   buildInputs = [ libintl ];
 
+  enableParallelBuilding = true;
+
   doCheck = true;
 
   meta = {
     homepage = "https://github.com/rrthomas/recode";
     description = "Converts files between various character sets and usages";
+    changelog = "https://github.com/rrthomas/recode/raw/v${version}/NEWS";
     platforms = lib.platforms.unix;
-    license = lib.licenses.gpl2Plus;
+    license = with lib.licenses; [ lgpl3Plus gpl3Plus ];
     maintainers = with lib.maintainers; [ jcumming ];
   };
 }