Add Guile-Lint, a syntax and semantics checker for GNU Guile.

svn path=/nixpkgs/trunk/; revision=10710
This commit is contained in:
Ludovic Courtès 2008-02-15 16:30:33 +00:00
parent 4fd7a30a36
commit 9c3c9f94e5
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl, guile}:
stdenv.mkDerivation rec {
name = "guile-lint-14";
src = fetchurl {
url = "http://www.geocities.com/user42_kevin/guile-lint/"
+ name + ".tar.bz2.bin";
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
'';
meta = {
description = ''Guile-Lint checks syntax and semantics in a
Guile program or module.'';
homepage = http://www.geocities.com/user42_kevin/guile-lint/index.html;
license = "GPL";
};
}

View File

@ -1861,6 +1861,10 @@ rec {
inherit cabal;
};
guileLint = import ../development/tools/guile/guile-lint {
inherit fetchurl stdenv guile;
};
# happy = import ../development/tools/parsing/happy {
# inherit fetchurl stdenv perl ghc;
# };