isocodes: add pkgConfigModules metadata and corresponding test

This commit is contained in:
Eldritch Cookie 2024-01-12 13:52:30 -03:00 committed by Rodney Lorrimar
parent 7f52f0ab0a
commit 5649b4b829
No known key found for this signature in database
GPG Key ID: D8B75C95FB4D1143

View File

@ -1,11 +1,11 @@
{ lib, stdenv, fetchurl, gettext, python3 }:
{ lib, stdenv, fetchurl, gettext, python3, testers }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "iso-codes";
version = "4.16.0";
src = fetchurl {
url = "https://salsa.debian.org/iso-codes-team/iso-codes/-/archive/v${version}/${pname}-v${version}.tar.gz";
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=";
};
@ -13,10 +13,17 @@ stdenv.mkDerivation rec {
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" ];
};
}
})