hydra_unstable: apply nixpkgs-fmt

main
Rick van Schijndel 2 years ago
parent 3a7f7c1153
commit 189a38576e
  1. 95
      pkgs/development/tools/misc/hydra/unstable.nix

@ -1,11 +1,44 @@
{ stdenv { stdenv
, lib , lib
, nix, perlPackages, buildEnv , nix
, makeWrapper, autoconf, automake, libtool, unzip, pkg-config, sqlite, libpqxx_6 , perlPackages
, top-git, mercurial, darcs, subversion, breezy, openssl, bzip2, libxslt , buildEnv
, perl, postgresql, nukeReferences, git, boehmgc, nlohmann_json , makeWrapper
, docbook_xsl, openssh, gnused, coreutils, findutils, gzip, xz, gnutar , autoconf
, rpm, dpkg, cdrkit, pixz, boost, autoreconfHook , automake
, libtool
, unzip
, pkg-config
, sqlite
, libpqxx_6
, top-git
, mercurial
, darcs
, subversion
, breezy
, openssl
, bzip2
, libxslt
, perl
, postgresql
, nukeReferences
, git
, boehmgc
, nlohmann_json
, docbook_xsl
, openssh
, gnused
, coreutils
, findutils
, gzip
, xz
, gnutar
, rpm
, dpkg
, cdrkit
, pixz
, boost
, autoreconfHook
, mdbook , mdbook
, foreman , foreman
, python3 , python3
@ -21,7 +54,8 @@ let
perlDeps = buildEnv { perlDeps = buildEnv {
name = "hydra-perl-deps"; name = "hydra-perl-deps";
paths = with perlPackages; lib.closePropagation paths = with perlPackages; lib.closePropagation
[ ModulePluggable [
ModulePluggable
AuthenSASL AuthenSASL
CatalystActionREST CatalystActionREST
CatalystAuthenticationStoreDBIxClass CatalystAuthenticationStoreDBIxClass
@ -90,7 +124,8 @@ let
git git
]; ];
}; };
in stdenv.mkDerivation rec { in
stdenv.mkDerivation rec {
pname = "hydra"; pname = "hydra";
version = "2022-02-07"; version = "2022-02-07";
@ -102,9 +137,24 @@ in stdenv.mkDerivation rec {
}; };
buildInputs = buildInputs =
[ makeWrapper libtool unzip nukeReferences sqlite libpqxx_6 [
top-git mercurial darcs subversion breezy openssl bzip2 libxslt makeWrapper
perlDeps perl nix libtool
unzip
nukeReferences
sqlite
libpqxx_6
top-git
mercurial
darcs
subversion
breezy
openssl
bzip2
libxslt
perlDeps
perl
nix
postgresql # for running the tests postgresql # for running the tests
nlohmann_json nlohmann_json
boost boost
@ -112,9 +162,26 @@ in stdenv.mkDerivation rec {
]; ];
hydraPath = lib.makeBinPath ( hydraPath = lib.makeBinPath (
[ sqlite subversion openssh nix coreutils findutils pixz [
gzip bzip2 xz gnutar unzip git top-git mercurial /*darcs*/ gnused breezy sqlite
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] ); 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 ]
);
nativeBuildInputs = [ autoreconfHook pkg-config mdbook autoconf automake ]; nativeBuildInputs = [ autoreconfHook pkg-config mdbook autoconf automake ];

Loading…
Cancel
Save