bash_unit: init at 1.6.1

This commit is contained in:
Pamplemousse 2020-01-04 09:38:55 -07:00
parent 968afa4dd8
commit 34441168b3
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

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