Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-01-19 01:18:25 +00:00
committed by GitHub
90 changed files with 1040 additions and 288 deletions
+20 -12
View File
@@ -1,29 +1,37 @@
{ stdenv, fetchzip, coreutils, gnugrep }:
{ stdenv, lib, fetchzip, bash, makeWrapper, coreutils, gnugrep, doCheck ? true }:
stdenv.mkDerivation rec {
pname = "bats";
version = "1.2.0";
version = "1.2.1";
src = fetchzip {
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
sha256 = "0f59zh4d4pa1a7ybs5zl6h0csbqqv11lbnq0jl1dgwm1s6p49bsq";
hash = "sha256-grB/rJaDU0fuw4Hm3/9nI2px8KZnSWqRjTJPd7Mmb7s=";
};
patchPhase = ''
patchShebangs ./install.sh
nativeBuildInputs = [ makeWrapper ];
substituteInPlace ./libexec/bats-core/bats \
--replace 'type -p greadlink readlink' 'type -p ${coreutils}/bin/readlink'
substituteInPlace ./libexec/bats-core/bats-format-tap-stream \
--replace grep ${gnugrep}/bin/grep
patchPhase = ''
patchShebangs .
'';
installPhase = "./install.sh $out";
installPhase = ''
./install.sh $out
wrapProgram $out/bin/bats --suffix PATH : "${lib.makeBinPath [ bash coreutils gnugrep ]}"
'';
meta = with stdenv.lib; {
inherit doCheck;
checkPhase = ''
# test generates file with absolute shebang dynamically
substituteInPlace test/install.bats --replace \
"/usr/bin/env bash" "${bash}/bin/bash"
bin/bats test
'';
meta = with lib; {
homepage = "https://github.com/bats-core/bats-core";
description = "Bash Automated Testing System";
maintainers = [ maintainers.lnl7 ];
maintainers = with maintainers; [ abathur ];
license = licenses.mit;
platforms = platforms.unix;
};
@@ -58,7 +58,8 @@
# "libgcc_s.so.1 must be installed for pthread_cancel to work".
# don't have "libgcc_s.so.1" on darwin
LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";
LDFLAGS = stdenv.lib.optionalString
(!stdenv.isDarwin && !stdenv.hostPlatform.isStatic) "-lgcc_s";
configureFlags = [ "--with-libreadline-prefix=${readline.dev}" ]
++ stdenv.lib.optionals stdenv.isSunOS [
@@ -22,6 +22,12 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ cmake pkg-config ];
# Since wasmer 0.17 no backends are enabled by default. Backends are now detected
# using the [makefile](https://github.com/wasmerio/wasmer/blob/master/Makefile).
# Enabling cranelift as this used to be the old default. At least one backend is
# needed for the run subcommand to work.
cargoBuildFlags = [ "--features 'backend-cranelift'" ];
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
meta = with lib; {