mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
bash_unit: init at 1.6.1
This commit is contained in:
parent
968afa4dd8
commit
34441168b3
2 changed files with 29 additions and 0 deletions
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 { };
|
||||
|
||||
bash_unit = callPackage ../tools/misc/bash_unit { };
|
||||
|
||||
bsc = callPackage ../tools/compression/bsc {
|
||||
inherit (llvmPackages) openmp;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue