fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ buildDunePackage, ppxlib, reason }:
2
3buildDunePackage rec {
4 pname = "helloreason";
5 version = "0.0.1";
6
7 src = ./.;
8
9 nativeBuildInputs = [
10 reason
11 ];
12
13 buildInputs = [
14 ppxlib
15 reason
16 ];
17
18 doCheck = true;
19
20 doInstallCheck = true;
21 postInstallCheck = ''
22 $out/bin/${pname} | grep -q "Hello From Reason" > /dev/null
23 '';
24
25 meta.timeout = 60;
26}