nixpkgs/pkgs/development/libraries/libconfuse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.9 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, flex
}:
2016-01-25 01:48:27 +00:00
stdenv.mkDerivation rec {
pname = "libconfuse";
2020-06-26 15:33:27 +00:00
version = "3.3";
2016-01-25 01:48:27 +00:00
src = fetchFromGitHub {
2020-06-26 15:33:27 +00:00
sha256 = "1npfk5jv59kk4n8pkyx89fn9s6p8x3gbffs42jaw24frgxfgp8ca";
2016-01-25 01:48:27 +00:00
rev = "v${version}";
repo = "libconfuse";
owner = "martinh";
};
patches = [
(fetchpatch {
name = "CVE-2022-40320.patch";
urls = [
"https://sources.debian.org/data/main/libc/libconfuse/3.3-3/debian/patches/CVE-2022-40320.patch"
# files on sources.debian.org can disappear
"https://web.archive.org/web/20230107133212/https://sources.debian.org/data/main/libc/libconfuse/3.3-3/debian/patches/CVE-2022-40320.patch"
];
sha256 = "sha256-ftfE9JFz4nyRSOb2xHb9BAtgWn5Yv2WLm4RegDLtiBw=";
})
];
postPatch = ''
substituteInPlace tests/Makefile.am \
--replace 'TESTS += empty_string' "" \
--replace 'TESTS += print_filter' ""
'';
2016-01-25 01:48:27 +00:00
nativeBuildInputs = [ autoreconfHook flex ];
enableParallelBuilding = true;
# On darwin the tests depend on the installed libraries because of install_name.
doInstallCheck = true;
installCheckTarget = "check";
2016-01-25 01:48:27 +00:00
meta = with lib; {
2016-01-25 01:48:27 +00:00
inherit (src.meta) homepage;
description = "Small configuration file parser library for C";
longDescription = ''
libConfuse (previously libcfg) is a configuration file parser library
written in C. It supports sections and (lists of) values, as well as
some other features. It makes it very easy to add configuration file
capability to a program using a simple API.
The goal of libConfuse is not to be the configuration file parser library
with a gazillion of features. Instead, it aims to be easy to use and
quick to integrate with your code.
'';
license = licenses.isc;
2017-04-20 22:04:13 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-01-25 01:48:27 +00:00
};
}