givaro: init at 4.0.2
This commit is contained in:
parent
1998a0d4d2
commit
22821970ba
|
@ -0,0 +1,20 @@
|
|||
{stdenv, fetchFromGitHub, automake, autoconf, libtool, autoreconfHook, gmpxx}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "givaro";
|
||||
version = "4.0.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "linbox-team";
|
||||
repo = "${pname}";
|
||||
rev = "v${version}";
|
||||
sha256 = "04n1lyc823z3l1d7mnmqpc9z1pkn646szjchasbfkn74m7cb0qz7";
|
||||
};
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -6989,6 +6989,8 @@ in
|
|||
|
||||
gio-sharp = callPackage ../development/libraries/gio-sharp { };
|
||||
|
||||
givaro = callPackage ../development/libraries/givaro {};
|
||||
|
||||
icon-lang = callPackage ../development/interpreters/icon-lang { };
|
||||
|
||||
libgit2 = callPackage ../development/libraries/git2 (
|
||||
|
|
Loading…
Reference in New Issue