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-09-24 05:23:19 +00:00
version = "0.1.0";
2024-04-23 18:05:46 +00:00
src = fetchgit {
url = "https://git.lain.faith/haskal/xlog.git";
rev = version;
2024-09-24 05:23:19 +00:00
hash = "sha256-m+eIil9ChU+/TqCnBvVc/yOrfvQGmeDL7qoa7+v7fHo=";
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
}