mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
givaro_3_7: init at 3.7.2
This commit is contained in:
parent
80b8f39a7a
commit
516e27c20e
18
pkgs/development/libraries/givaro/3.7.nix
Normal file
18
pkgs/development/libraries/givaro/3.7.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -7001,6 +7001,7 @@ in
|
|||
|
||||
givaro = callPackage ../development/libraries/givaro {};
|
||||
givaro_3 = callPackage ../development/libraries/givaro/3.nix {};
|
||||
givaro_3_7 = callPackage ../development/libraries/givaro/3.7.nix {};
|
||||
|
||||
icon-lang = callPackage ../development/interpreters/icon-lang { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue