From cbb0a29bc4c957c0b4bdca85c2c1babb0c5c32e8 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 17 Feb 2019 23:18:46 +0800 Subject: [PATCH] make jq and bash accessible in hydra runcommand --- nixbld-etc-nixos/hydra.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixbld-etc-nixos/hydra.nix b/nixbld-etc-nixos/hydra.nix index fbab53b..203147a 100644 --- a/nixbld-etc-nixos/hydra.nix +++ b/nixbld-etc-nixos/hydra.nix @@ -4,6 +4,7 @@ , guile, perl, postgresql, nukeReferences, git, boehmgc, nlohmann_json , docbook_xsl, openssh, gnused, coreutils, findutils, gzip, lzma, gnutar , rpm, dpkg, cdrkit, pixz, lib, fetchpatch, boost, autoreconfHook +, jq, bash }: with stdenv; @@ -98,6 +99,7 @@ in releaseTools.nixBuild rec { hydraPath = lib.makeBinPath ( [ sqlite subversion openssh nix coreutils findutils pixz gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar + jq bash ] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] ); nativeBuildInputs = [ autoreconfHook pkgconfig ];