summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/conan/unix.nix
blob: 3f9ae29a69c4126cf93c4d2add7d934236f8ec89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  buildDunePackage,
  conan,
  cachet,
  alcotest,
  crowbar,
  fmt,
  rresult,
}:

buildDunePackage {
  pname = "conan-unix";
  inherit (conan) version src meta;

  propagatedBuildInputs = [
    cachet
    conan
  ];

  doCheck = true;

  checkInputs = [
    alcotest
    crowbar
    fmt
    rresult
  ];
}