2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, python3, perl, intltool, flex, texinfo, libiconv, libintl }:
|
2010-10-20 14:05:49 +01:00
|
|
|
|
2019-10-22 09:03:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "recode";
|
2021-08-17 19:16:58 +01:00
|
|
|
version = "3.7.9";
|
2010-10-20 14:05:49 +01:00
|
|
|
|
2019-10-22 09:03:49 +01:00
|
|
|
# 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";
|
2021-08-17 19:16:58 +01:00
|
|
|
sha256 = "sha256-5DIKaw9c2DfNtFT7WFQBjd+pcJEWCOHwHMLGX2M2csQ=";
|
2010-10-20 14:05:49 +01:00
|
|
|
};
|
|
|
|
|
2019-11-14 12:20:35 +00:00
|
|
|
nativeBuildInputs = [ python3 python3.pkgs.cython perl intltool flex texinfo libiconv ];
|
2018-03-26 05:36:14 +01:00
|
|
|
buildInputs = [ libintl ];
|
2013-03-06 09:07:54 +00:00
|
|
|
|
2019-10-22 09:03:49 +01:00
|
|
|
doCheck = true;
|
2013-03-06 09:07:54 +00:00
|
|
|
|
2010-10-20 14:05:49 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/rrthomas/recode";
|
2010-10-20 14:05:49 +01:00
|
|
|
description = "Converts files between various character sets and usages";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [ jcumming ];
|
2010-10-20 14:05:49 +01:00
|
|
|
};
|
|
|
|
}
|