pplite: init at 0.11
This commit is contained in:
parent
86f5431801
commit
038238e6ae
19
pkgs/development/libraries/pplite/default.nix
Normal file
19
pkgs/development/libraries/pplite/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user