Skip to content

Commit

Permalink
Merge pull request #86513 from r-ryantm/auto-update/bats
Browse files Browse the repository at this point in the history
bats: 1.1.0 -> 1.2.0
  • Loading branch information
LnL7 committed May 2, 2020
2 parents cf9a8bc + 727d931 commit 5958dd0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/development/interpreters/bats/default.nix
@@ -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";
Expand Down

0 comments on commit 5958dd0

Please sign in to comment.