libconfig: Adopting package and refactor (#351618)

This commit is contained in:
Aleksana 2024-10-28 03:16:02 +08:00 committed by GitHub
commit 1661ad68a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 34 additions and 34 deletions

View File

@ -0,0 +1,34 @@
{
lib,
stdenv,
fetchurl,
# This also disables building tests.
# on static windows cross-compile they fail to build
doCheck ? with stdenv.hostPlatform; !(isWindows && isStatic),
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libconfig";
version = "1.7.3";
src = fetchurl {
url = "https://hyperrealm.github.io/${finalAttrs.pname}/dist/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
hash = "sha256-VFFm1srAN3RDgdHpzFpUBQlOe/rRakEWmbz/QLuzHuc=";
};
inherit doCheck;
configureFlags =
lib.optional (stdenv.hostPlatform.isWindows || stdenv.hostPlatform.isStatic) "--disable-examples"
++ lib.optional (!finalAttrs.doCheck) "--disable-tests";
cmakeFlags = lib.optionals (!finalAttrs.doCheck) [ "-DBUILD_TESTS:BOOL=OFF" ];
meta = {
homepage = "https://hyperrealm.github.io/libconfig/";
description = "C/C++ library for processing configuration files";
license = lib.licenses.lgpl3;
maintainers = with lib.maintainers; [ stv0g ];
platforms = lib.platforms.all;
};
})

View File

@ -1,32 +0,0 @@
{ lib
, stdenv
, fetchurl
, # this also disables building tests.
# on static windows cross-compile they fail to build
doCheck ? with stdenv.hostPlatform; !(isWindows && isStatic)
}:
stdenv.mkDerivation rec {
pname = "libconfig";
version = "1.7.3";
src = fetchurl {
url = "https://hyperrealm.github.io/${pname}/dist/${pname}-${version}.tar.gz";
sha256 = "sha256-VFFm1srAN3RDgdHpzFpUBQlOe/rRakEWmbz/QLuzHuc=";
};
inherit doCheck;
configureFlags = lib.optional (stdenv.hostPlatform.isWindows || stdenv.hostPlatform.isStatic) "--disable-examples"
++ lib.optional (!doCheck) "--disable-tests";
cmakeFlags = lib.optionals (!doCheck) [ "-DBUILD_TESTS:BOOL=OFF" ];
meta = with lib; {
homepage = "http://www.hyperrealm.com/libconfig";
description = "Simple library for processing structured configuration files";
license = licenses.lgpl3;
maintainers = [ ];
platforms = platforms.all;
};
}

View File

@ -9570,8 +9570,6 @@ with pkgs;
libcork = callPackage ../development/libraries/libcork { };
libconfig = callPackage ../development/libraries/libconfig { };
libcmis = callPackage ../development/libraries/libcmis { };
libee = callPackage ../development/libraries/libee { };