1{ stdenv, lib, fetchurl, flint, gmp }:
2
3stdenv.mkDerivation {
4 pname = "pplite";
5 version = "0.11";
6
7 src = fetchurl {
8 url = "https://github.com/ezaffanella/PPLite/raw/main/releases/pplite-0.11.tar.gz";
9 hash = "sha256-6IS5zVab8X+gnhK8/qbPH5FODFaG6vIsIG9TTEpfHEI=";
10 };
11
12 buildInputs = [ flint gmp ];
13
14 meta = {
15 homepage = "https://github.com/ezaffanella/PPLite";
16 description = "Convex polyhedra library for Abstract Interpretation";
17 license = lib.licenses.gpl3Only;
18 };
19}