Skip to content

Commit

Permalink
Merge pull request #76941 from Pamplemousse/bash_unit
Browse files Browse the repository at this point in the history
bash_unit: init at 1.6.1
  • Loading branch information
markuskowa committed Jan 7, 2020
2 parents f55ec6f + 3444116 commit 9a805e9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/tools/misc/bash_unit/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 9a805e9

Please sign in to comment.