about summary refs log tree commit diff
path: root/pkgs/development/coq-modules/Vpl/default.nix
blob: 6581a919b8dff51b13249e27eb550af0ff8a352f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, mkCoqDerivation, coq, version ? null }:

mkCoqDerivation {
  pname = "Vpl";
  owner = "VERIMAG-Polyhedra";
  inherit version;

  defaultVersion = if lib.versions.range "8.8" "8.9" coq.coq-version then "0.5" else null;

  release."0.5".sha256 = "sha256-mSD/xSweeK9WMxWDdX/vzN96iXo74RkufjuNvtzsP9o=";

  sourceRoot = "source/coq";

  meta = {
    description = "Coq interface to VPL abstract domain of convex polyhedra";
    homepage = "https://amarechal.gitlab.io/home/projects/vpl/";
    license = lib.licenses.lgpl3Only;
    maintainers = [ lib.maintainers.vbgl ];
  };
}