mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 17:14:33 +00:00
24 lines
373 B
Nix
24 lines
373 B
Nix
{
|
|
buildDunePackage,
|
|
melange,
|
|
reason,
|
|
reason-react-ppx,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "reason-react";
|
|
inherit (reason-react-ppx) version src;
|
|
nativeBuildInputs = [
|
|
reason
|
|
melange
|
|
];
|
|
buildInputs = [
|
|
reason-react-ppx
|
|
melange
|
|
];
|
|
doCheck = true;
|
|
meta = reason-react-ppx.meta // {
|
|
description = "Reason bindings for React.js";
|
|
};
|
|
}
|