ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / gu / guile-config / package.nix
blob7881a5edf8813168854aaf2cf2514d3a98da7376
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   autoreconfHook,
6   pkg-config,
7   texinfo,
8   guile,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "guile-config";
13   version = "0.5.1";
15   src = fetchFromGitLab {
16     owner = "a-sassmannshausen";
17     repo = "guile-config";
18     rev = version;
19     hash = "sha256-n4ukGCyIx5G1ITfKSqS6FGJ6dnDBsyxXKSFNi81E4Gg=";
20   };
22   nativeBuildInputs = [
23     autoreconfHook
24     pkg-config
25     texinfo
26   ];
28   buildInputs = [ guile ];
30   enableParallelBuilding = true;
32   doCheck = true;
34   meta = with lib; {
35     description = "Configuration management library for GNU Guile";
36     homepage = "https://gitlab.com/a-sassmannshausen/guile-config";
37     license = licenses.gpl3Plus;
38     maintainers = with maintainers; [ sikmir ];
39     platforms = guile.meta.platforms;
40   };