26 lines
473 B
Nix
26 lines
473 B
Nix
{
|
|
fetchgit,
|
|
buildDunePackage,
|
|
|
|
ptime,
|
|
ppxlib,
|
|
ppx_unicode
|
|
}:
|
|
buildDunePackage rec {
|
|
pname = "xlog";
|
|
version = "0.1.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.lain.faith/haskal/xlog.git";
|
|
rev = version;
|
|
hash = "sha256-m+eIil9ChU+/TqCnBvVc/yOrfvQGmeDL7qoa7+v7fHo=";
|
|
};
|
|
|
|
minimalOcamlVersion = "5.1";
|
|
dontStrip = true;
|
|
|
|
buildInputs = [ ppx_unicode ];
|
|
propagatedBuildInputs = [ ptime ppxlib ];
|
|
nativeBuildInputs = [ ppxlib ppx_unicode ];
|
|
}
|