nixpkgs/pkgs/development/libraries/iso-codes/default.nix

23 lines
621 B
Nix
Raw Normal View History

2022-01-08 00:05:35 +00:00
{ lib, stdenv, fetchurl, gettext, python3 }:
stdenv.mkDerivation rec {
pname = "iso-codes";
2022-07-31 13:41:43 +00:00
version = "4.11.0";
2017-03-14 01:29:03 +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=";
};
2019-05-07 00:58:25 +00:00
nativeBuildInputs = [ gettext python3 ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://salsa.debian.org/iso-codes-team/iso-codes";
description = "Various ISO codes packaged as XML files";
license = licenses.lgpl21;
2017-03-14 01:29:03 +00:00
platforms = platforms.all;
};
}