2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv
|
2018-07-11 14:02:19 -07:00
|
|
|
, fetchFromGitHub
|
2018-04-24 06:40:12 -07:00
|
|
|
, gmp
|
|
|
|
, autoreconfHook
|
2018-07-11 14:02:19 -07:00
|
|
|
, texlive
|
2018-04-24 06:40:12 -07:00
|
|
|
}:
|
|
|
|
|
2016-10-10 11:20:28 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cddlib";
|
2020-12-10 04:37:29 -08:00
|
|
|
version = "0.94m";
|
2018-07-11 14:02:19 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cddlib";
|
|
|
|
repo = "cddlib";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2020-12-10 04:37:29 -08:00
|
|
|
sha256 = "09s8323h5w9j6mpl1yc6lm770dkskfxd2ayyafkcjllmnncxzfa0";
|
2016-10-10 11:20:28 -07:00
|
|
|
};
|
|
|
|
buildInputs = [gmp];
|
2018-04-24 06:40:12 -07:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
2018-07-11 14:02:19 -07:00
|
|
|
texlive.combined.scheme-small # for building the documentation
|
2018-04-24 06:40:12 -07:00
|
|
|
];
|
2018-07-11 14:02:19 -07:00
|
|
|
# No actual checks yet (2018-05-05), but maybe one day.
|
|
|
|
# Requested here: https://github.com/cddlib/cddlib/issues/25
|
|
|
|
doCheck = true;
|
2021-01-21 09:00:13 -08:00
|
|
|
meta = with lib; {
|
2016-10-10 11:20:28 -07:00
|
|
|
inherit version;
|
2021-01-15 20:20:42 -08:00
|
|
|
description = "An implementation of the Double Description Method for generating all vertices of a convex polyhedron";
|
2018-07-11 14:02:19 -07:00
|
|
|
license = licenses.gpl2Plus;
|
2020-11-18 12:29:24 -08:00
|
|
|
maintainers = teams.sage.members;
|
2018-08-13 21:15:36 -07:00
|
|
|
platforms = platforms.unix;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html";
|
2016-10-10 11:20:28 -07:00
|
|
|
};
|
|
|
|
}
|