nixpkgs/pkgs/development/interpreters/bats/default.nix

27 lines
717 B
Nix
Raw Normal View History

2018-10-27 16:18:53 +03:00
{ stdenv, fetchzip, gnugrep }:
2016-02-07 14:11:31 +03:00
stdenv.mkDerivation rec {
name = "bats-${version}";
2018-08-23 22:14:59 +03:00
version = "1.1.0";
2016-02-07 14:11:31 +03:00
src = fetchzip {
2018-08-23 22:14:59 +03:00
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
sha256 = "1kkh0j2alql3xiyhw9wsvcc3xclv52g0ivgyk8h85q9fn3qdqakz";
2016-02-07 14:11:31 +03:00
};
2018-10-27 16:18:53 +03:00
patchPhase = ''
patchShebangs ./install.sh
substituteInPlace ./libexec/bats-core/bats-format-tap-stream --replace grep ${gnugrep}/bin/grep
'';
2016-02-07 14:11:31 +03:00
installPhase = "./install.sh $out";
meta = with stdenv.lib; {
2018-08-23 22:14:59 +03:00
homepage = https://github.com/bats-core/bats-core;
2016-02-07 14:11:31 +03:00
description = "Bash Automated Testing System";
maintainers = [ maintainers.lnl7 ];
license = licenses.mit;
platforms = platforms.unix;
};
}