pplite: init at 0.11

This commit is contained in:
Vincent Laporte 2023-09-21 07:24:44 +02:00 committed by Vincent Laporte
parent 86f5431801
commit 038238e6ae
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, lib, fetchurl, flint, gmp }:
stdenv.mkDerivation {
pname = "pplite";
version = "0.11";
src = fetchurl {
url = "https://github.com/ezaffanella/PPLite/raw/main/releases/pplite-0.11.tar.gz";
hash = "sha256-6IS5zVab8X+gnhK8/qbPH5FODFaG6vIsIG9TTEpfHEI=";
};
buildInputs = [ flint gmp ];
meta = {
homepage = "https://github.com/ezaffanella/PPLite";
description = "Convex polyhedra library for Abstract Interpretation";
license = lib.licenses.gpl3Only;
};
}

View file

@ -12215,6 +12215,8 @@ with pkgs;
ppl = callPackage ../development/libraries/ppl { };
pplite = callPackage ../development/libraries/pplite { };
ppp = callPackage ../tools/networking/ppp { };
pptp = callPackage ../tools/networking/pptp { };