guile-lint: fix build by building with guile 1.8

[1] gives us the indication that guile-lint should be used with
guile-1.8.

[1]: https://www.gnu.org/software/guile/libraries/
This commit is contained in:
xd1le 2017-09-27 23:18:02 +10:00
parent 56ab381973
commit fd03758305
2 changed files with 3 additions and 2 deletions

View file

@ -22,6 +22,5 @@ stdenv.mkDerivation rec {
description = "Guile-Lint checks syntax and semantics in a Guile program or module";
homepage = http://user42.tuxfamily.org/guile-lint/index.html;
license = "GPL";
broken = true;
};
}

View file

@ -7187,7 +7187,9 @@ with pkgs;
gtkdialog = callPackage ../development/tools/misc/gtkdialog { };
guile-lint = callPackage ../development/tools/guile/guile-lint { };
guile-lint = callPackage ../development/tools/guile/guile-lint {
guile = guile_1_8;
};
gwrap = callPackage ../development/tools/guile/g-wrap { };