Merge pull request #109069 from abathur/update/bats-1.2.1
bats: 1.2.0 -> 1.2.1
This commit is contained in:
commit
2a28c3a986
@ -1,29 +1,37 @@
|
|||||||
{ stdenv, fetchzip, coreutils, gnugrep }:
|
{ stdenv, lib, fetchzip, bash, makeWrapper, coreutils, gnugrep, doCheck ? true }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "bats";
|
pname = "bats";
|
||||||
version = "1.2.0";
|
version = "1.2.1";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
|
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
|
||||||
sha256 = "0f59zh4d4pa1a7ybs5zl6h0csbqqv11lbnq0jl1dgwm1s6p49bsq";
|
hash = "sha256-grB/rJaDU0fuw4Hm3/9nI2px8KZnSWqRjTJPd7Mmb7s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patchPhase = ''
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
patchShebangs ./install.sh
|
|
||||||
|
|
||||||
substituteInPlace ./libexec/bats-core/bats \
|
patchPhase = ''
|
||||||
--replace 'type -p greadlink readlink' 'type -p ${coreutils}/bin/readlink'
|
patchShebangs .
|
||||||
substituteInPlace ./libexec/bats-core/bats-format-tap-stream \
|
|
||||||
--replace grep ${gnugrep}/bin/grep
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
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";
|
homepage = "https://github.com/bats-core/bats-core";
|
||||||
description = "Bash Automated Testing System";
|
description = "Bash Automated Testing System";
|
||||||
maintainers = [ maintainers.lnl7 ];
|
maintainers = with maintainers; [ abathur ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user