shunit2: 2019-08-10 (unstable) -> 2.1.8

This commit is contained in:
Travis A. Everett 2021-09-23 19:59:16 -05:00 committed by Cole Helbling
parent 14d355b7c0
commit 3325d1bc62

View file

@ -9,15 +9,15 @@
, ncurses , ncurses
}: }:
resholvePackage { resholvePackage rec {
pname = "shunit2"; pname = "shunit2";
version = "2019-08-10"; version = "2.1.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kward"; owner = "kward";
repo = "shunit2"; repo = pname;
rev = "ba130d69bbff304c0c6a9c5e8ab549ae140d6225"; rev = "v${version}";
sha256 = "1bsn8dhxbjfmh01lq80yhnld3w3fw1flh7nwx12csrp58zsvlmgk"; hash = "sha256-IZHkgkVqzeh+eEKCDJ87sqNhSA+DU6kBCNDdQaUEeiM=";
}; };
installPhase = '' installPhase = ''
@ -82,8 +82,8 @@ resholvePackage {
meta = with lib; { meta = with lib; {
homepage = "https://github.com/kward/shunit2"; homepage = "https://github.com/kward/shunit2";
description = "A xUnit based unit test framework for Bourne based shell scripts"; description = "An xUnit based unit test framework for Bourne based shell scripts";
maintainers = with maintainers; [ cdepillabout utdemir ]; maintainers = with maintainers; [ abathur utdemir ];
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.unix; platforms = platforms.unix;
}; };