mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
29ab705c17
repeat of #271241 discussion: #272978 I did not replace the instance in eiwd, since it causes an infinite recursion.
77 lines
1.9 KiB
Nix
77 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
fetchFromGitHub,
|
|
substituteAll,
|
|
symlinkJoin,
|
|
cmake,
|
|
doxygen,
|
|
ruby,
|
|
validatePkgConfig,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "iniparser";
|
|
version = "4.2.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "iniparser";
|
|
repo = "iniparser";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-R069LuOmjCFj7dHXiMjuK7WUupk5+dVd8IDKY/wBn2o=";
|
|
};
|
|
|
|
patches = lib.optionals finalAttrs.finalPackage.doCheck [
|
|
(substituteAll {
|
|
# Do not let cmake's fetchContent download unity
|
|
src = ./remove-fetchcontent-usage.patch;
|
|
unitySrc = symlinkJoin {
|
|
name = "unity-with-iniparser-config";
|
|
paths = [
|
|
(fetchFromGitHub {
|
|
owner = "throwtheswitch";
|
|
repo = "unity";
|
|
rev = "v2.6.0";
|
|
hash = "sha256-SCcUGNN/UJlu3ALJiZ9bQKxYRZey3cm9QG+NOehp6Ow=";
|
|
})
|
|
];
|
|
postBuild = ''
|
|
ln -s ${finalAttrs.src}/test/unity_config.h $out/src/unity_config.h
|
|
'';
|
|
};
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
doxygen
|
|
validatePkgConfig
|
|
] ++ lib.optionals finalAttrs.finalPackage.doCheck [ ruby ];
|
|
|
|
cmakeFlags = [ "-DBUILD_TESTING=${if finalAttrs.finalPackage.doCheck then "ON" else "OFF"}" ];
|
|
|
|
doCheck = false;
|
|
|
|
postFixup = ''
|
|
ln -sv $out/include/iniparser/*.h $out/include/
|
|
'';
|
|
|
|
passthru.tests = {
|
|
pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
iniparser-with-tests = finalAttrs.overrideAttrs (_: {
|
|
doCheck = true;
|
|
});
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/iniparser/iniparser";
|
|
description = "Free standalone ini file parsing library";
|
|
changelog = "https://gitlab.com/iniparser/iniparser/-/releases/v${finalAttrs.version}";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
pkgConfigModules = [ "iniparser" ];
|
|
maintainers = [ maintainers.primeos ];
|
|
};
|
|
})
|