ocamlPackages.wodan: init unstable-2020-11-20

This commit is contained in:
Emery Hemingway
2021-01-22 08:34:26 +01:00
committed by Vincent Laporte
parent ab361e2b8e
commit 93e31f2a78
4 changed files with 93 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib, buildDunePackage, base64, benchmark, csv, cmdliner, wodan, afl-persistent
, io-page-unix, mirage-block-ramdisk, mirage-block-unix }:
buildDunePackage rec {
outputs = [ "bin" "out" ];
pname = "wodan-unix";
inherit (wodan) version src useDune2;
propagatedBuildInputs = [
afl-persistent
base64
benchmark
cmdliner
csv
io-page-unix
mirage-block-ramdisk
mirage-block-unix
wodan
];
postInstall = ''
moveToOutput bin "''${!outputBin}"
'';
meta = wodan.meta // { description = "Wodan clients with Unix integration"; };
}