2024-01-25 16:20:27 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2024-01-25 17:21:13 +00:00
|
|
|
, fileset
|
2024-01-25 16:20:27 +00:00
|
|
|
|
2024-01-25 17:21:13 +00:00
|
|
|
, rawSrc
|
2024-01-25 16:20:27 +00:00
|
|
|
|
|
|
|
, buildEnv
|
|
|
|
|
|
|
|
, perlPackages
|
|
|
|
|
|
|
|
, nix
|
|
|
|
, git
|
|
|
|
|
|
|
|
, makeWrapper
|
|
|
|
, autoreconfHook
|
|
|
|
, nukeReferences
|
|
|
|
, pkg-config
|
|
|
|
, mdbook
|
|
|
|
|
|
|
|
, unzip
|
|
|
|
, libpqxx
|
|
|
|
, top-git
|
|
|
|
, mercurial
|
|
|
|
, darcs
|
|
|
|
, subversion
|
|
|
|
, breezy
|
|
|
|
, openssl
|
|
|
|
, bzip2
|
|
|
|
, libxslt
|
|
|
|
, perl
|
|
|
|
, pixz
|
|
|
|
, boost
|
|
|
|
, postgresql_13
|
|
|
|
, nlohmann_json
|
|
|
|
, prometheus-cpp
|
|
|
|
|
|
|
|
, cacert
|
|
|
|
, foreman
|
|
|
|
, glibcLocales
|
|
|
|
, libressl
|
|
|
|
, openldap
|
|
|
|
, python3
|
|
|
|
|
|
|
|
, openssh
|
|
|
|
, coreutils
|
|
|
|
, findutils
|
|
|
|
, gzip
|
|
|
|
, xz
|
|
|
|
, gnutar
|
|
|
|
, gnused
|
|
|
|
|
|
|
|
, rpm
|
|
|
|
, dpkg
|
|
|
|
, cdrkit
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
perlDeps = buildEnv {
|
|
|
|
name = "hydra-perl-deps";
|
|
|
|
paths = with perlPackages; lib.closePropagation
|
|
|
|
[
|
|
|
|
AuthenSASL
|
|
|
|
CatalystActionREST
|
|
|
|
CatalystAuthenticationStoreDBIxClass
|
|
|
|
CatalystAuthenticationStoreLDAP
|
|
|
|
CatalystDevel
|
|
|
|
CatalystPluginAccessLog
|
|
|
|
CatalystPluginAuthorizationRoles
|
|
|
|
CatalystPluginCaptcha
|
|
|
|
CatalystPluginPrometheusTiny
|
|
|
|
CatalystPluginSessionStateCookie
|
|
|
|
CatalystPluginSessionStoreFastMmap
|
|
|
|
CatalystPluginStackTrace
|
|
|
|
CatalystTraitForRequestProxyBase
|
|
|
|
CatalystViewDownload
|
|
|
|
CatalystViewJSON
|
|
|
|
CatalystViewTT
|
|
|
|
CatalystXRoleApplicator
|
|
|
|
CatalystXScriptServerStarman
|
|
|
|
CryptPassphrase
|
|
|
|
CryptPassphraseArgon2
|
|
|
|
CryptRandPasswd
|
|
|
|
DataDump
|
|
|
|
DateTime
|
|
|
|
DBDPg
|
|
|
|
DBDSQLite
|
|
|
|
DigestSHA1
|
|
|
|
EmailMIME
|
|
|
|
EmailSender
|
|
|
|
FileLibMagic
|
|
|
|
FileSlurper
|
|
|
|
FileWhich
|
|
|
|
# Not Perl
|
|
|
|
nix.perl-bindings
|
|
|
|
git
|
|
|
|
# Perl again
|
|
|
|
IOCompress
|
|
|
|
IPCRun
|
|
|
|
IPCRun3
|
|
|
|
JSON
|
|
|
|
JSONMaybeXS
|
|
|
|
JSONXS
|
|
|
|
ListSomeUtils
|
|
|
|
LWP
|
|
|
|
LWPProtocolHttps
|
|
|
|
ModulePluggable
|
|
|
|
NetAmazonS3
|
|
|
|
NetPrometheus
|
|
|
|
NetStatsd
|
|
|
|
PadWalker
|
|
|
|
ParallelForkManager
|
|
|
|
PerlCriticCommunity
|
|
|
|
PrometheusTinyShared
|
|
|
|
ReadonlyX
|
|
|
|
SetScalar
|
|
|
|
SQLSplitStatement
|
|
|
|
Starman
|
|
|
|
StringCompareConstantTime
|
|
|
|
SysHostnameLong
|
|
|
|
TermSizeAny
|
|
|
|
TermReadKey
|
|
|
|
Test2Harness
|
|
|
|
TestPostgreSQL
|
|
|
|
TextDiff
|
|
|
|
TextTable
|
|
|
|
UUID4Tiny
|
|
|
|
YAML
|
|
|
|
XMLSimple
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2024-01-25 17:21:13 +00:00
|
|
|
version = "${builtins.readFile ./version.txt}.${builtins.substring 0 8 (rawSrc.lastModifiedDate or "19700101")}.${rawSrc.shortRev or "DIRTY"}";
|
2024-01-25 16:20:27 +00:00
|
|
|
in
|
2024-01-25 17:21:13 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2024-01-25 16:20:27 +00:00
|
|
|
pname = "hydra";
|
|
|
|
inherit version;
|
|
|
|
|
2024-01-25 17:21:13 +00:00
|
|
|
src = fileset.toSource {
|
|
|
|
root = ./.;
|
|
|
|
fileset = fileset.unions ([
|
|
|
|
./version.txt
|
|
|
|
./configure.ac
|
|
|
|
./Makefile.am
|
|
|
|
./src
|
|
|
|
./doc
|
2024-01-25 16:54:44 +00:00
|
|
|
./nixos-modules/hydra.nix
|
2024-01-25 18:27:05 +00:00
|
|
|
# These are always needed to appease Automake
|
|
|
|
./t/Makefile.am
|
|
|
|
./t/jobs/config.nix.in
|
|
|
|
./t/jobs/declarative/project.json.in
|
2024-01-25 17:21:13 +00:00
|
|
|
] ++ lib.optionals finalAttrs.doCheck [
|
2024-01-25 18:27:05 +00:00
|
|
|
./t
|
2024-01-25 17:21:13 +00:00
|
|
|
./.perlcriticrc
|
|
|
|
./.yath.rc
|
|
|
|
]);
|
|
|
|
};
|
2024-01-25 16:20:27 +00:00
|
|
|
|
2024-01-25 16:32:00 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2024-01-25 16:20:27 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
autoreconfHook
|
|
|
|
nukeReferences
|
|
|
|
pkg-config
|
|
|
|
mdbook
|
2024-01-25 16:32:00 +00:00
|
|
|
nix
|
|
|
|
perlDeps
|
|
|
|
perl
|
|
|
|
unzip
|
2024-01-25 16:20:27 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libpqxx
|
|
|
|
openssl
|
|
|
|
libxslt
|
|
|
|
nix
|
|
|
|
perlDeps
|
|
|
|
perl
|
|
|
|
boost
|
|
|
|
nlohmann_json
|
|
|
|
prometheus-cpp
|
|
|
|
];
|
|
|
|
|
2024-01-25 16:32:00 +00:00
|
|
|
nativeCheckInputs = [
|
|
|
|
bzip2
|
|
|
|
darcs
|
|
|
|
top-git
|
|
|
|
mercurial
|
|
|
|
subversion
|
|
|
|
breezy
|
|
|
|
openldap
|
|
|
|
postgresql_13
|
|
|
|
pixz
|
|
|
|
];
|
|
|
|
|
2024-01-25 16:20:27 +00:00
|
|
|
checkInputs = [
|
|
|
|
cacert
|
|
|
|
foreman
|
|
|
|
glibcLocales
|
|
|
|
libressl.nc
|
|
|
|
python3
|
|
|
|
];
|
|
|
|
|
|
|
|
hydraPath = lib.makeBinPath (
|
|
|
|
[
|
|
|
|
subversion
|
|
|
|
openssh
|
|
|
|
nix
|
|
|
|
coreutils
|
|
|
|
findutils
|
|
|
|
pixz
|
|
|
|
gzip
|
|
|
|
bzip2
|
|
|
|
xz
|
|
|
|
gnutar
|
|
|
|
unzip
|
|
|
|
git
|
|
|
|
top-git
|
|
|
|
mercurial
|
|
|
|
darcs
|
|
|
|
gnused
|
|
|
|
breezy
|
|
|
|
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ]
|
|
|
|
);
|
|
|
|
|
|
|
|
OPENLDAP_ROOT = openldap;
|
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
pushd $(git rev-parse --show-toplevel) >/dev/null
|
|
|
|
|
|
|
|
PATH=$(pwd)/src/hydra-evaluator:$(pwd)/src/script:$(pwd)/src/hydra-eval-jobs:$(pwd)/src/hydra-queue-runner:$PATH
|
|
|
|
PERL5LIB=$(pwd)/src/lib:$PERL5LIB
|
|
|
|
export HYDRA_HOME="$(pwd)/src/"
|
|
|
|
mkdir -p .hydra-data
|
|
|
|
export HYDRA_DATA="$(pwd)/.hydra-data"
|
|
|
|
export HYDRA_DBI='dbi:Pg:dbname=hydra;host=localhost;port=64444'
|
|
|
|
|
|
|
|
popd >/dev/null
|
|
|
|
'';
|
|
|
|
|
|
|
|
NIX_LDFLAGS = [ "-lpthread" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
patchShebangs .
|
|
|
|
export LOGNAME=''${LOGNAME:-foo}
|
|
|
|
# set $HOME for bzr so it can create its trace file
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
read -n 4 chars < $i
|
|
|
|
if [[ $chars =~ ELF ]]; then continue; fi
|
|
|
|
wrapProgram $i \
|
|
|
|
--prefix PERL5LIB ':' $out/libexec/hydra/lib:$PERL5LIB \
|
|
|
|
--prefix PATH ':' $out/bin:$hydraPath \
|
|
|
|
--set HYDRA_RELEASE ${version} \
|
|
|
|
--set HYDRA_HOME $out/libexec/hydra \
|
|
|
|
--set NIX_RELEASE ${nix.name or "unknown"}
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
meta.description = "Build of Hydra on ${stdenv.system}";
|
|
|
|
passthru = { inherit perlDeps nix; };
|
2024-01-25 17:21:13 +00:00
|
|
|
})
|