f875c682d4
svn path=/nixpkgs/trunk/; revision=11623
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ 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+";
|
|
};
|
|
}
|