nixpkgs/pkgs/development/tools/guile/guile-lint/default.nix
xd1le fd03758305 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/
2017-09-27 23:18:02 +10:00

27 lines
721 B
Nix

{stdenv, fetchurl, guile}:
stdenv.mkDerivation rec {
name = "guile-lint-14";
src = fetchurl {
url = "http://download.tuxfamily.org/user42/" + name + ".tar.bz2";
sha256 = "5bfcf7a623338b2ef81ac097e3e136eaf32856dd0730b7eeaff3161067b5d0be";
};
buildInputs = [ guile ];
unpackPhase = ''tar xjvf "$src" && sourceRoot="$PWD/${name}"'';
patchPhase = ''
cat guile-lint.in | \
sed 's|^exec guile|exec $\{GUILE:-${guile}/bin/guile}|g' > ,,tmp && \
mv ,,tmp guile-lint.in
'';
doCheck = true;
meta = {
description = "Guile-Lint checks syntax and semantics in a Guile program or module";
homepage = http://user42.tuxfamily.org/guile-lint/index.html;
license = "GPL";
};
}