2010-08-15 15:54:27 +02:00
|
|
|
{ stdenv, fetchurl, gmp }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "cln";
|
2019-12-23 08:29:35 +01:00
|
|
|
version = "1.3.6";
|
2010-08-15 15:54:27 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "${meta.homepage}${pname}-${version}.tar.bz2";
|
2019-12-23 08:29:35 +01:00
|
|
|
sha256 = "0jlq9l4hphk7qqlgqj9ihjp4m3rwjbhk6q4v00lsbgbri07574pl";
|
2010-08-15 15:54:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
|
2018-09-30 11:15:47 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-08-15 15:54:27 +02:00
|
|
|
description = "C/C++ library for numbers, a part of GiNaC";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.ginac.de/CLN/";
|
2018-09-30 11:15:47 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix; # Once had cygwin problems
|
2010-08-15 15:54:27 +02:00
|
|
|
};
|
|
|
|
}
|