3
0
Fork 0
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:
Daiderd Jordan 2020-05-02 12:54:00 +02:00 committed by GitHub
commit 5958dd0e25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";