15 lines
230 B
Nix
15 lines
230 B
Nix
{
|
|
pkgs,
|
|
git,
|
|
ocamlPackages,
|
|
buildInputs,
|
|
}:
|
|
ocamlPackages.buildDunePackage {
|
|
pname = "smooooth";
|
|
version = "0.01a";
|
|
src = ./.;
|
|
meta.mainProgram = "smooooth";
|
|
nativeBuildInputs = [ git ];
|
|
inherit buildInputs;
|
|
}
|