nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ fetchurl, stdenv, makeWrapper, perl, openssh, rsync }:
2
3stdenv.mkDerivation rec {
4 name = "autobuild-5.3";
5
6 src = fetchurl {
7 url = "http://savannah.spinellicreations.com/autobuild/${name}.tar.gz";
8 sha256 = "0gv7g61ja9q9zg1m30k4snqwwy1kq7b4df6sb7d2qra7kbdq8af1";
9 };
10
11 buildInputs = [ makeWrapper perl openssh rsync ];
12
13 doCheck = true;
14
15 meta = {
16 description = "Continuous integration tool";
17
18 longDescription = ''
19 Autobuild is a package that process output from building
20 software, primarily focused on packages using Autoconf and
21 Automake, and then generate a HTML summary file, containing
22 links to each build log.
23
24 Autobuild can also help you automate building your project on
25 many systems concurrently. Users with accounts on the
26 SourceForge compile farms will be able to invoke a parallel
27 build of their Autoconf/Automake based software, and produce a
28 summary of the build status, after reading the manual.
29 '';
30
31 homepage = https://josefsson.org/autobuild/;
32 license = stdenv.lib.licenses.gpl2Plus;
33 };
34}