24 lines
400 B
Nix
24 lines
400 B
Nix
|
{
|
||
|
fetchgit,
|
||
|
buildDunePackage,
|
||
|
|
||
|
ptime,
|
||
|
ppxlib
|
||
|
}:
|
||
|
buildDunePackage rec {
|
||
|
pname = "xlog";
|
||
|
version = "0.0.1";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "https://git.lain.faith/haskal/xlog.git";
|
||
|
rev = version;
|
||
|
hash = "sha256-AS50sT4PJm/zk58R/yniGGG0sqdqZUePcVg0BI1CA4E=";
|
||
|
};
|
||
|
|
||
|
minimalOcamlVersion = "5.1";
|
||
|
dontStrip = true;
|
||
|
|
||
|
buildInputs = [ ppxlib ];
|
||
|
propagatedBuildInputs = [ ptime ];
|
||
|
}
|