forked from mirrors/nixpkgs
Merge pull request #86513 from r-ryantm/auto-update/bats
bats: 1.1.0 -> 1.2.0
This commit is contained in:
commit
5958dd0e25
|
@ -1,17 +1,21 @@
|
|||
{ stdenv, fetchzip, gnugrep }:
|
||||
{ stdenv, fetchzip, coreutils, gnugrep }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bats";
|
||||
version = "1.1.0";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
|
||||
sha256 = "1kkh0j2alql3xiyhw9wsvcc3xclv52g0ivgyk8h85q9fn3qdqakz";
|
||||
sha256 = "0f59zh4d4pa1a7ybs5zl6h0csbqqv11lbnq0jl1dgwm1s6p49bsq";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
patchShebangs ./install.sh
|
||||
substituteInPlace ./libexec/bats-core/bats-format-tap-stream --replace grep ${gnugrep}/bin/grep
|
||||
|
||||
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
|
||||
'';
|
||||
|
||||
installPhase = "./install.sh $out";
|
||||
|
|
Loading…
Reference in a new issue