dragnpkgs/pkgs/ocaml/xlog/default.nix

24 lines
400 B
Nix
Raw Normal View History

2024-04-23 18:05:46 +00:00
{
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 ];
}