2021-01-23 12:26:19 +00:00
|
|
|
{ fetchurl, lib, stdenv, makeWrapper, perl, openssh, rsync }:
|
2008-07-28 21:29:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-20 10:34:30 +00:00
|
|
|
pname = "autobuild";
|
|
|
|
version = "5.3";
|
2008-07-28 21:29:17 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-20 10:34:30 +00:00
|
|
|
url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
|
2015-06-26 15:39:40 +00:00
|
|
|
sha256 = "0gv7g61ja9q9zg1m30k4snqwwy1kq7b4df6sb7d2qra7kbdq8af1";
|
2008-07-28 21:29:17 +00:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perl openssh rsync ];
|
2008-07-28 21:29:17 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2013-10-05 14:22:46 +00:00
|
|
|
description = "Continuous integration tool";
|
2008-07-28 21:29:17 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Autobuild is a package that process output from building
|
|
|
|
software, primarily focused on packages using Autoconf and
|
|
|
|
Automake, and then generate a HTML summary file, containing
|
|
|
|
links to each build log.
|
|
|
|
|
|
|
|
Autobuild can also help you automate building your project on
|
|
|
|
many systems concurrently. Users with accounts on the
|
|
|
|
SourceForge compile farms will be able to invoke a parallel
|
|
|
|
build of their Autoconf/Automake based software, and produce a
|
|
|
|
summary of the build status, after reading the manual.
|
|
|
|
'';
|
|
|
|
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://josefsson.org/autobuild/";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2008-07-28 21:29:17 +00:00
|
|
|
};
|
|
|
|
}
|