mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 20:34:06 +00:00
24 lines
337 B
Nix
24 lines
337 B
Nix
|
{ lib, buildDunePackage, reason }:
|
||
|
|
||
|
buildDunePackage rec {
|
||
|
pname = "helloreason";
|
||
|
version = "0.0.1";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
useDune2 = true;
|
||
|
|
||
|
buildInputs = [
|
||
|
reason
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
doInstallCheck = true;
|
||
|
postInstallCheck = ''
|
||
|
$out/bin/${pname} | grep -q "Hello From Reason" > /dev/null
|
||
|
'';
|
||
|
|
||
|
meta.timeout = 60;
|
||
|
}
|