1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Add DejaGNU, a testing framework.

svn path=/nixpkgs/trunk/; revision=11623
This commit is contained in:
Ludovic Courtès 2008-04-14 11:47:26 +00:00
parent 2086656c45
commit f875c682d4
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ fetchurl, stdenv, expect, makeWrapper }:
stdenv.mkDerivation rec {
name = "dejagnu-1.4.4";
src = fetchurl {
url = "mirror://gnu/dejagnu/${name}.tar.gz";
sha256 = "13841q6pfwd9d1sdw48yxdyb4xhiccii0mb0ilql627v43pyvyyh";
};
buildInputs = [ expect makeWrapper ];
doCheck = true;
postInstall = ''
wrapProgram "$out/bin/runtest" \
--prefix PATH ":" "${expect}/bin"
'';
meta = {
description = "The DejaGNU testing framework";
longDescription = ''
DejaGnu is a framework for testing other programs. Its purpose
is to provide a single front end for all tests. Think of it as a
custom library of Tcl procedures crafted to support writing a
test harness. A test harness is the testing infrastructure that
is created to support a specific program or tool. Each program
can have multiple testsuites, all supported by a single test
harness. DejaGnu is written in Expect, which in turn uses Tcl --
Tool command language.
'';
homepage = http://www.gnu.org/software/dejagnu/;
license = "GPLv2+";
};
}

View file

@ -1959,6 +1959,10 @@ let pkgs = rec {
inherit fetchurl stdenv replace;
};
dejagnu = import ../development/tools/misc/dejagnu {
inherit fetchurl stdenv expect makeWrapper;
};
elfutilsFun = lib.sumArgs
(selectVersion ../development/tools/misc/elfutils "0.131") {
inherit fetchurl stdenv;