summary refs log tree commit diff
path: root/pkgs/development/libraries/givaro/3.7.nix
blob: 9907ae24f2c91cdbaef1d349f1963d35bdd0f3c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, automake, autoconf, libtool, autoreconfHook, gmpxx}:
stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  pname = "givaro";
  version = "3.7.2";
  src = fetchurl {
    url = "https://forge.imag.fr/frs/download.php/370/givaro-${version}.tar.gz";
    sha256 = "0lf5cnbyr27fw7klc3zabkb1979dn67jmrjz6pa3jzw2ng74x9b3";
  };
  buildInputs = [autoconf automake libtool autoreconfHook gmpxx];
  meta = {
    inherit version;
    description = ''A C++ library for arithmetic and algebraic computations'';
    license = stdenv.lib.licenses.cecill-b;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.linux;
  };
}