Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
789 B
Nix
35 lines
789 B
Nix
{
|
|
asciidoctor,
|
|
fetchFromGitLab,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tapview";
|
|
version = "1.1";
|
|
|
|
nativeBuildInputs = [ asciidoctor ];
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "esr";
|
|
repo = "tapview";
|
|
rev = version;
|
|
hash = "sha256-inrxICNglZU/tup+YnHaDiVss32K2OXht/7f8lOZI4g=";
|
|
};
|
|
|
|
# Remove unnecessary `echo` checks: `/bin/echo` fails, and `echo -n` works as expected.
|
|
patches = [ ./dont_check_echo.patch ];
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Minimalist pure consumer for TAP (Test Anything Protocol)";
|
|
mainProgram = "tapview";
|
|
homepage = "https://gitlab.com/esr/tapview";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ pamplemousse ];
|
|
};
|
|
}
|