bash_unit: init at 1.6.1
This commit is contained in:
parent
968afa4dd8
commit
34441168b3
27
pkgs/tools/misc/bash_unit/default.nix
Normal file
27
pkgs/tools/misc/bash_unit/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -2234,6 +2234,8 @@ in
|
|||||||
|
|
||||||
atool = callPackage ../tools/archivers/atool { };
|
atool = callPackage ../tools/archivers/atool { };
|
||||||
|
|
||||||
|
bash_unit = callPackage ../tools/misc/bash_unit { };
|
||||||
|
|
||||||
bsc = callPackage ../tools/compression/bsc {
|
bsc = callPackage ../tools/compression/bsc {
|
||||||
inherit (llvmPackages) openmp;
|
inherit (llvmPackages) openmp;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user