From 8c2b4ad4544284c9070a50d81169885cd8a090cc Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 23 Aug 2018 21:14:59 +0200 Subject: [PATCH] bats: 0.4.0 -> 1.1.0 --- pkgs/development/interpreters/bats/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/interpreters/bats/default.nix b/pkgs/development/interpreters/bats/default.nix index bf262d4f050..081f1a547d6 100644 --- a/pkgs/development/interpreters/bats/default.nix +++ b/pkgs/development/interpreters/bats/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "bats-${version}"; - version = "0.4.0"; + version = "1.1.0"; src = fetchzip { - url = "https://github.com/sstephenson/bats/archive/v${version}.tar.gz"; - sha256 = "05xpvfm0xky1532i3hd2l3wznxzh99bv2hxgykwdpxh18h6jr6jm"; + url = "https://github.com/bats-core/bats-core/archive/v${version}.tar.gz"; + sha256 = "1kkh0j2alql3xiyhw9wsvcc3xclv52g0ivgyk8h85q9fn3qdqakz"; }; patchPhase = "patchShebangs ./install.sh"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { installPhase = "./install.sh $out"; meta = with stdenv.lib; { - homepage = https://github.com/sstephenson/bats; + homepage = https://github.com/bats-core/bats-core; description = "Bash Automated Testing System"; maintainers = [ maintainers.lnl7 ]; license = licenses.mit;