toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / sh / shellspec / package.nix
blob367f789456b661388cbd4d09653200bbf46bb091
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   bash,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "shellspec";
10   version = "0.28.1";
12   src = fetchFromGitHub {
13     owner = "shellspec";
14     repo = pname;
15     rev = version;
16     sha256 = "1ib5qp29f2fmivwnv6hq35qhvdxz42xgjlkvy0i3qn758riyqf46";
17   };
19   strictDeps = true;
20   buildInputs = [ bash ];
21   makeFlags = [ "PREFIX=${placeholder "out"}" ];
23   checkPhase = ''
24     ./shellspec --no-banner --task fixture:stat:prepare
25     ./shellspec --no-banner spec --jobs "$(nproc)"
26   '';
28   # "Building" the script happens in Docker
29   dontBuild = true;
31   meta = with lib; {
32     description = "A full-featured BDD unit testing framework for bash, ksh, zsh, dash and all POSIX shells";
33     homepage = "https://shellspec.info/";
34     changelog = "https://github.com/shellspec/shellspec/releases/tag/${version}";
35     license = licenses.mit;
36     maintainers = with maintainers; [ j0hax ];
37     platforms = platforms.unix;
38     mainProgram = "shellspec";
39   };