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