pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / gu / guile-config / package.nix
blobd0fe7be0c87ed9ba7bfec49ff74968c3cd5de643
1 { lib, stdenv, fetchFromGitLab, autoreconfHook, pkg-config, texinfo, guile }:
3 stdenv.mkDerivation rec {
4   pname = "guile-config";
5   version = "0.5.1";
7   src = fetchFromGitLab {
8     owner = "a-sassmannshausen";
9     repo = "guile-config";
10     rev = version;
11     hash = "sha256-n4ukGCyIx5G1ITfKSqS6FGJ6dnDBsyxXKSFNi81E4Gg=";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config texinfo ];
16   buildInputs = [ guile ];
18   enableParallelBuilding = true;
20   doCheck = true;
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   };