depot/third_party/nixpkgs/pkgs/development/libraries/pplite/default.nix
Default email 98eb3e9ef5 Project import generated by Copybara.
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
2024-07-01 15:47:52 +00:00

20 lines
532 B
Nix

{ stdenv, lib, fetchurl, flint, gmp }:
stdenv.mkDerivation {
pname = "pplite";
version = "0.12";
src = fetchurl {
url = "https://github.com/ezaffanella/PPLite/raw/main/releases/pplite-0.12.tar.gz";
hash = "sha256-9qulVEIZRPHV5GnVmp65nMrGrUwRGkR8i8ORbLdHb1E=";
};
buildInputs = [ flint gmp ];
meta = {
homepage = "https://github.com/ezaffanella/PPLite";
description = "Convex polyhedra library for Abstract Interpretation";
mainProgram = "pplite_lcdd";
license = lib.licenses.gpl3Only;
};
}