1 { lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, texinfo, guile }:
3 stdenv.mkDerivation rec {
4 pname = "guile-config";
7 src = fetchFromGitLab {
8 owner = "a-sassmannshausen";
11 hash = "sha256-n4ukGCyIx5G1ITfKSqS6FGJ6dnDBsyxXKSFNi81E4Gg=";
14 nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
16 buildInputs = [ guile ];
18 enableParallelBuilding = true;
23 description = "Configuration management library for GNU Guile";
24 homepage = "https://gitlab.com/a-sassmannshausen/guile-config";
25 license = licenses.gpl3Plus;
26 maintainers = with maintainers; [ sikmir ];
27 platforms = guile.meta.platforms;