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 {
|
|
|
|
name = "cddlib-${version}";
|
2018-07-11 22:02:19 +01:00
|
|
|
version = "0.94j";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cddlib";
|
|
|
|
repo = "cddlib";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "1z03ljy3rrr0qq5gq54vynnif6fn0xhn05g90nnv0dpyc3ps8lzp";
|
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;
|
|
|
|
maintainers = with maintainers; [raskin timokau];
|
2018-08-14 05:15:36 +01:00
|
|
|
platforms = platforms.unix;
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://www.inf.ethz.ch/personal/fukudak/cdd_home/index.html;
|
2016-10-10 19:20:28 +01:00
|
|
|
};
|
|
|
|
}
|