nixpkgs/pkgs/development/tools/misc/dejagnu/default.nix

56 lines
1.8 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, expect, makeWrapper }:
stdenv.mkDerivation rec {
2016-07-04 01:39:04 +00:00
name = "dejagnu-1.6";
src = fetchurl {
url = "mirror://gnu/dejagnu/${name}.tar.gz";
2016-07-04 01:39:04 +00:00
sha256 = "0qypaakd2065jgpcv84zcsibl8gph3p334gb2qdmhsrbirhlmdh0";
};
patches = [ ./wrapped-runtest-program-name.patch ];
buildInputs = [ expect makeWrapper ];
doCheck = true;
# Note: The test-suite *requires* /dev/pts among the `build-chroot-dirs' of
# the build daemon when building in a chroot. See
# <http://thread.gmane.org/gmane.linux.distributions.nixos/1036> for
# details.
# The test-suite needs to have a non-empty stdin:
# http://lists.gnu.org/archive/html/bug-dejagnu/2003-06/msg00002.html
checkPhase = ''
# Provide `runtest' with a log name, otherwise it tries to run
# `whoami', which fails when in a chroot.
LOGNAME="nix-build-daemon" make check < /dev/zero
'';
postInstall = ''
wrapProgram "$out/bin/runtest" \
2013-09-07 05:55:55 +00:00
--prefix PATH ":" "${expect}/bin"
'';
2015-04-30 18:48:44 +00:00
meta = with stdenv.lib; {
description = "Framework for testing other programs";
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/;
2015-04-30 18:48:44 +00:00
license = licenses.gpl2Plus;
2015-04-30 18:48:44 +00:00
platforms = platforms.linux;
2016-07-04 01:39:04 +00:00
maintainers = with maintainers; [ wkennington vrthra ];
};
}