mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Add `doCheck' for Guile-Lint and Guile-Library.
svn path=/nixpkgs/trunk/; revision=11289
This commit is contained in:
parent
31bc21974d
commit
62bcc0f821
3 changed files with 9 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, guile}:
|
||||
{stdenv, fetchurl, guile, texinfo}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "guile-lib-0.1.6";
|
||||
|
@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "827744c7954078f1f37e0bf70252ec70b4d60c1482a3542a49bd09723cf65d12";
|
||||
};
|
||||
|
||||
buildInputs = [guile];
|
||||
buildInputs = [guile texinfo];
|
||||
|
||||
postInstall = ''
|
||||
# Remove modules already provided by Guile.
|
||||
|
@ -29,9 +29,11 @@ stdenv.mkDerivation rec {
|
|||
done
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = ''Guile-Library, a set of various useful
|
||||
Guile Scheme modules.'';
|
||||
description = ''Guile-Library, a collection of useful Guile
|
||||
Scheme modules'';
|
||||
homepage = http://home.gna.org/guile-lib/;
|
||||
license = "GPL";
|
||||
};
|
||||
|
|
|
@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
|
|||
mv ,,tmp guile-lint.in
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = ''Guile-Lint checks syntax and semantics in a
|
||||
Guile program or module.'';
|
||||
|
|
|
@ -1795,7 +1795,7 @@ let pkgs = rec {
|
|||
};
|
||||
|
||||
guileLib = import ../development/guile-modules/guile-lib {
|
||||
inherit fetchurl stdenv guile;
|
||||
inherit fetchurl stdenv guile texinfo;
|
||||
};
|
||||
|
||||
windowssdk = import ../development/misc/windows-sdk {
|
||||
|
|
Loading…
Reference in a new issue