Merge pull request #76941 from Pamplemousse/bash_unit

bash_unit: init at 1.6.1
This commit is contained in:
markuskowa 2020-01-07 09:31:53 +01:00 committed by GitHub
commit 9a805e9b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ fetchFromGitHub
, stdenv
}:
stdenv.mkDerivation rec {
pname = "bash_unit";
version = "1.6.1";
src = fetchFromGitHub {
owner = "pgrange";
repo = pname;
rev = "v${version}";
sha256 = "0jcjpcyf569b12vm4jrd53iqrrsjvr8sp9y29w2ls38fm8a16vr6";
};
installPhase = ''
mkdir -p $out/bin
cp bash_unit $out/bin/
'';
meta = with stdenv.lib; {
description = "Bash unit testing enterprise edition framework for professionals";
maintainers = with maintainers; [ pamplemousse ];
platforms = platforms.linux;
license = licenses.gpl3Plus;
};
}

View File

@ -2250,6 +2250,8 @@ in
atool = callPackage ../tools/archivers/atool { };
bash_unit = callPackage ../tools/misc/bash_unit { };
bsc = callPackage ../tools/compression/bsc {
inherit (llvmPackages) openmp;
};