dragnpkgs/pkgs/ocaml/xlog/default.nix

26 lines
473 B
Nix
Raw Normal View History

2024-04-23 18:05:46 +00:00
{
fetchgit,
buildDunePackage,
ptime,
2024-04-25 07:03:58 +00:00
ppxlib,
ppx_unicode
2024-04-23 18:05:46 +00:00
}:
buildDunePackage rec {
pname = "xlog";
2024-04-25 07:03:58 +00:00
version = "0.0.2";
2024-04-23 18:05:46 +00:00
src = fetchgit {
url = "https://git.lain.faith/haskal/xlog.git";
rev = version;
2024-04-25 07:03:58 +00:00
hash = "sha256-Su1Udp7ICrMuD7D8TtyuNnfwTBK5ZefFk89miqwrxDc=";
2024-04-23 18:05:46 +00:00
};
minimalOcamlVersion = "5.1";
dontStrip = true;
2024-04-25 07:03:58 +00:00
buildInputs = [ ppx_unicode ];
propagatedBuildInputs = [ ptime ppxlib ];
nativeBuildInputs = [ ppxlib ppx_unicode ];
2024-04-23 18:05:46 +00:00
}