1{ lib, buildDunePackage, reason, console }:
2
3buildDunePackage rec {
4 pname = "console-test";
5 version = "1";
6
7 src = ./.;
8
9 duneVersion = "3";
10
11 buildInputs = [
12 reason
13 console
14 ];
15
16 doInstallCheck = true;
17 postInstallCheck = ''
18 $out/bin/console-test | grep -q "{\"Hello fellow Nixer!\"}" > /dev/null
19 '';
20}