Add DejaGNU, a testing framework.
svn path=/nixpkgs/trunk/; revision=11623
This commit is contained in:
parent
2086656c45
commit
f875c682d4
37
pkgs/development/tools/misc/dejagnu/default.nix
Normal file
37
pkgs/development/tools/misc/dejagnu/default.nix
Normal 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+";
|
||||||
|
};
|
||||||
|
}
|
@ -1959,6 +1959,10 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv replace;
|
inherit fetchurl stdenv replace;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dejagnu = import ../development/tools/misc/dejagnu {
|
||||||
|
inherit fetchurl stdenv expect makeWrapper;
|
||||||
|
};
|
||||||
|
|
||||||
elfutilsFun = lib.sumArgs
|
elfutilsFun = lib.sumArgs
|
||||||
(selectVersion ../development/tools/misc/elfutils "0.131") {
|
(selectVersion ../development/tools/misc/elfutils "0.131") {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
|
Loading…
Reference in New Issue
Block a user