mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
16 lines
297 B
Nix
16 lines
297 B
Nix
{ buildDunePackage, dolmen, dolmen_type
|
|
, gen
|
|
, pp_loc
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "dolmen_loop";
|
|
inherit (dolmen) src version;
|
|
|
|
propagatedBuildInputs = [ dolmen dolmen_type gen pp_loc ];
|
|
|
|
meta = dolmen.meta // {
|
|
description = "A tool library for automated deduction tools";
|
|
};
|
|
}
|