nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, texinfo, guile }:
2
3stdenv.mkDerivation rec {
4 pname = "guile-config";
5 version = "0.5.1";
6
7 src = fetchFromGitLab {
8 owner = "a-sassmannshausen";
9 repo = "guile-config";
10 rev = version;
11 hash = "sha256-n4ukGCyIx5G1ITfKSqS6FGJ6dnDBsyxXKSFNi81E4Gg=";
12 };
13
14 nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
15
16 buildInputs = [ guile ];
17
18 enableParallelBuilding = true;
19
20 doCheck = true;
21
22 meta = with lib; {
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;
28 };
29}