Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 mkCoqDerivation, 4 coq, 5 Vpl, 6 version ? null, 7}: 8 9mkCoqDerivation { 10 pname = "VplTactic"; 11 owner = "VERIMAG-Polyhedra"; 12 defaultVersion = if lib.versions.isEq "8.9" coq.version then "0.5" else null; 13 14 release."0.5".rev = "487e3aff8446bed2c5116cefc7d71d98a06e85de"; 15 release."0.5".sha256 = "sha256-4h0hyvj9R+GOgnGWQFDi0oENLZPiJoimyK1q327qvIY="; 16 17 buildInputs = [ coq.ocamlPackages.vpl-core ]; 18 propagatedBuildInputs = [ Vpl ]; 19 mlPlugin = true; 20 21 meta = Vpl.meta // { 22 description = "Coq Tactic for Arithmetic (based on VPL)"; 23 }; 24}