about summary refs log tree commit diff
path: root/pkgs/development/libraries/iso-codes/default.nix
blob: 0b9b316f44336eb7650f10cf9520cef7c565f6af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenv, fetchurl, gettext, python3, testers }:

stdenv.mkDerivation (finalAttrs: {
  pname = "iso-codes";
  version = "4.16.0";

  src = fetchurl {
    url = with finalAttrs; "https://salsa.debian.org/iso-codes-team/iso-codes/-/archive/v${version}/${pname}-v${version}.tar.gz";
    sha256 = "sha256-fJkPw5oFl1vtsBdeP/Cfw4MEiBX2i0Yqu/BVqAMuZsw=";
  };

  nativeBuildInputs = [ gettext python3 ];

  enableParallelBuilding = true;

  passthru.tests = {
    pkg-config = testers.hasPkgConfigModules {
      package = finalAttrs.finalPackage;
    };
  };

  meta = with lib; {
    homepage = "https://salsa.debian.org/iso-codes-team/iso-codes";
    description = "Various ISO codes packaged as XML files";
    license = licenses.lgpl21;
    platforms = platforms.all;
    pkgConfigModules = [ "iso-codes" ];
  };
})