shunit2: init at 2019-08-10

This commit is contained in:
Utku Demir 2019-09-06 12:16:16 +12:00
parent 5e3334bc55
commit 8376cd42a4
No known key found for this signature in database
GPG key ID: F3F8629C3E0BF60B
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "shunit2";
version = "2019-08-10";
src = fetchFromGitHub {
owner = "kward";
repo = "shunit2";
rev = "ba130d69bbff304c0c6a9c5e8ab549ae140d6225";
sha256 = "1bsn8dhxbjfmh01lq80yhnld3w3fw1flh7nwx12csrp58zsvlmgk";
};
installPhase = ''
mkdir -p $out/bin/
cp ./shunit2 $out/bin/shunit2
chmod +x $out/bin/shunit2
'';
doInstallCheck = true;
installCheckPhase = ''
$out/bin/shunit2
'';
meta = with stdenv.lib; {
homepage = https://github.com/kward/shunit2;
description = "A xUnit based unit test framework for Bourne based shell scripts.";
maintainers = with maintainers; [ cdepillabout utdemir ];
license = licenses.asl20;
platforms = platforms.unix;
};
}

View file

@ -6088,6 +6088,8 @@ in
shrikhand = callPackage ../data/fonts/shrikhand { };
shunit2 = callPackage ../tools/misc/shunit2 { };
sic = callPackage ../applications/networking/irc/sic { };
siege = callPackage ../tools/networking/siege {};