guile-config: init at 0.5.1

This commit is contained in:
Nikolay Korotkiy 2022-08-20 00:42:02 +03:00
parent 002bd07544
commit e848778692
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, texinfo, guile }:
stdenv.mkDerivation rec {
pname = "guile-config";
version = "0.5.1";
src = fetchFromGitLab {
owner = "a-sassmannshausen";
repo = "guile-config";
rev = version;
hash = "sha256-n4ukGCyIx5G1ITfKSqS6FGJ6dnDBsyxXKSFNi81E4Gg=";
};
nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
buildInputs = [ guile ];
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
description = "Configuration management library for GNU Guile";
homepage = "https://gitlab.com/a-sassmannshausen/guile-config";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
platforms = guile.meta.platforms;
};
}

View File

@ -15271,6 +15271,8 @@ with pkgs;
guile-commonmark = callPackage ../development/guile-modules/guile-commonmark { };
guile-config = callPackage ../development/guile-modules/guile-config { };
guile-fibers = callPackage ../development/guile-modules/guile-fibers { };
guile-gcrypt = callPackage ../development/guile-modules/guile-gcrypt { };