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

24 lines
598 B
Nix
Raw Normal View History

2016-02-07 11:11:31 +00:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
name = "bats-${version}";
2018-08-23 20:14:59 +01:00
version = "1.1.0";
2016-02-07 11:11:31 +00:00
src = fetchzip {
2018-08-23 20:14:59 +01:00
url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz";
sha256 = "1kkh0j2alql3xiyhw9wsvcc3xclv52g0ivgyk8h85q9fn3qdqakz";
2016-02-07 11:11:31 +00:00
};
patchPhase = "patchShebangs ./install.sh";
2016-02-07 11:11:31 +00:00
installPhase = "./install.sh $out";
meta = with stdenv.lib; {
2018-08-23 20:14:59 +01:00
homepage = https://github.com/bats-core/bats-core;
2016-02-07 11:11:31 +00:00
description = "Bash Automated Testing System";
maintainers = [ maintainers.lnl7 ];
license = licenses.mit;
platforms = platforms.unix;
};
}