Merge pull request #12865 from LnL7/added-bash-bats
bats: init at 4.0.4
This commit is contained in:
commit
3511442267
21
pkgs/development/interpreters/bats/default.nix
Normal file
21
pkgs/development/interpreters/bats/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bats-${version}";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/sstephenson/bats/archive/v${version}.tar.gz";
|
||||
sha256 = "05xpvfm0xky1532i3hd2l3wznxzh99bv2hxgykwdpxh18h6jr6jm";
|
||||
};
|
||||
|
||||
installPhase = "./install.sh $out";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/sstephenson/bats;
|
||||
description = "Bash Automated Testing System";
|
||||
maintainers = [ maintainers.lnl7 ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -988,6 +988,8 @@ let
|
||||
|
||||
bareos = callPackage ../tools/backup/bareos { };
|
||||
|
||||
bats = callPackage ../development/interpreters/bats { };
|
||||
|
||||
beanstalkd = callPackage ../servers/beanstalkd { };
|
||||
|
||||
beets = callPackage ../tools/audio/beets { };
|
||||
|
Loading…
Reference in New Issue
Block a user