catala/.nix/ninja_utils.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
528 B
Nix
Raw Normal View History

{ lib
, buildDunePackage
, odoc
, re
}:
buildDunePackage rec {
pname = "ninja_utils";
2022-08-08 18:26:07 +03:00
version = "0.7.0"; # TODO parse `catala.opam` with opam2json
minimumOCamlVersion = "4.11";
src = ../.;
2022-09-05 13:47:52 +03:00
duneVersion = "3";
propagatedBuildInputs = [
odoc
re
];
doCheck = true;
meta = with lib; {
homepage = "https://catala-lang.org";
description =
"A collection of utility functions used to generate Ninja build files";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}