givaro_3: init at 3.8.0
This commit is contained in:
parent
d5547a9409
commit
80b8f39a7a
18
pkgs/development/libraries/givaro/3.nix
Normal file
18
pkgs/development/libraries/givaro/3.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{stdenv, fetchurl, automake, autoconf, libtool, autoreconfHook, gmpxx}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "givaro";
|
||||
version = "3.8.0";
|
||||
src = fetchurl {
|
||||
url = "https://forge.imag.fr/frs/download.php/592/givaro-${version}.tar.gz";
|
||||
sha256 = "1822ksv8653a84hvcz0vxl3nk8dqz7d41ys8rplq0zjjmvb2i5yq";
|
||||
};
|
||||
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;
|
||||
};
|
||||
}
|
@ -7000,6 +7000,7 @@ in
|
||||
gio-sharp = callPackage ../development/libraries/gio-sharp { };
|
||||
|
||||
givaro = callPackage ../development/libraries/givaro {};
|
||||
givaro_3 = callPackage ../development/libraries/givaro/3.nix {};
|
||||
|
||||
icon-lang = callPackage ../development/interpreters/icon-lang { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user