2022-01-08 00:05:35 +00:00
|
|
|
{ lib, stdenv, fetchurl, gettext, python3 }:
|
2009-04-17 15:08:14 +00:00
|
|
|
|
2010-12-14 10:21:38 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "iso-codes";
|
2022-07-31 13:41:43 +00:00
|
|
|
version = "4.11.0";
|
2017-03-14 01:29:03 +00:00
|
|
|
|
2009-04-17 15:08:14 +00:00
|
|
|
src = fetchurl {
|
2022-01-08 00:05:35 +00:00
|
|
|
url = "https://salsa.debian.org/iso-codes-team/iso-codes/-/archive/v${version}/${pname}-v${version}.tar.gz";
|
2022-07-31 13:41:43 +00:00
|
|
|
sha256 = "sha256-QI95nfQTVGj6fKNetrBcQAS+pEPYHKWLibLkgkAagrs=";
|
2009-04-17 15:08:14 +00:00
|
|
|
};
|
2019-05-07 00:58:25 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ gettext python3 ];
|
2010-12-14 10:21:38 +00:00
|
|
|
|
2023-02-06 16:53:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://salsa.debian.org/iso-codes-team/iso-codes";
|
2010-12-14 10:21:38 +00:00
|
|
|
description = "Various ISO codes packaged as XML files";
|
2018-09-02 18:13:36 +00:00
|
|
|
license = licenses.lgpl21;
|
2017-03-14 01:29:03 +00:00
|
|
|
platforms = platforms.all;
|
2010-12-14 10:21:38 +00:00
|
|
|
};
|
2009-04-17 15:08:14 +00:00
|
|
|
}
|