mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
531e4b80c9
Only acts on one-line dependency lists.
20 lines
695 B
Nix
20 lines
695 B
Nix
{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";
|
|
};
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [autoconf automake libtool 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;
|
|
};
|
|
}
|