nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 asciidoctor,
3 fetchFromGitLab,
4 lib,
5 stdenv,
6}:
7
8stdenv.mkDerivation (finalAttrs: {
9 pname = "tapview";
10 version = "1.15";
11
12 nativeBuildInputs = [ asciidoctor ];
13
14 src = fetchFromGitLab {
15 owner = "esr";
16 repo = "tapview";
17 tag = finalAttrs.version;
18 hash = "sha256-6v+CxNjj3gPE3wmhit6e5OuhkjVACFv/4QAbFDCySGc=";
19 };
20
21 makeFlags = [ "prefix=$(out)" ];
22
23 meta = {
24 description = "Minimalist pure consumer for TAP (Test Anything Protocol)";
25 mainProgram = "tapview";
26 homepage = "https://gitlab.com/esr/tapview";
27 license = lib.licenses.bsd2;
28 platforms = lib.platforms.all;
29 maintainers = with lib.maintainers; [ pamplemousse ];
30 };
31})