fflas-ffpack_1: init at 1.6.0
This commit is contained in:
parent
792026d795
commit
02fb2e5150
21
pkgs/development/libraries/fflas-ffpack/1.nix
Normal file
21
pkgs/development/libraries/fflas-ffpack/1.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{stdenv, fetchurl, autoreconfHook, givaro_3_7, pkgconfig, openblas, gmpxx}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "fflas-ffpack";
|
||||||
|
version = "1.6.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://linalg.org/fflas-ffpack-${version}.tar.gz";
|
||||||
|
sha256 = "02fr675278c65hfiy1chb903j4ix9i8yni1xc2g5nmsjcaf9vra9";
|
||||||
|
};
|
||||||
|
buildInputs = [autoreconfHook givaro_3_7 openblas gmpxx];
|
||||||
|
nativeBuildInputs = [pkgconfig];
|
||||||
|
configureFlags = "--with-blas=-lopenblas --with-gmp=${gmpxx.dev} --with-givaro=${givaro_3_7}";
|
||||||
|
meta = {
|
||||||
|
inherit version;
|
||||||
|
description = ''Finite Field Linear Algebra Subroutines'';
|
||||||
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
homepage = "https://linbox-team.github.io/fflas-ffpack/";
|
||||||
|
};
|
||||||
|
}
|
@ -6826,6 +6826,7 @@ in
|
|||||||
fcgi = callPackage ../development/libraries/fcgi { };
|
fcgi = callPackage ../development/libraries/fcgi { };
|
||||||
|
|
||||||
fflas-ffpack = callPackage ../development/libraries/fflas-ffpack {};
|
fflas-ffpack = callPackage ../development/libraries/fflas-ffpack {};
|
||||||
|
fflas-ffpack_1 = callPackage ../development/libraries/fflas-ffpack/1.nix {};
|
||||||
|
|
||||||
ffmpeg_0_10 = callPackage ../development/libraries/ffmpeg/0.10.nix {
|
ffmpeg_0_10 = callPackage ../development/libraries/ffmpeg/0.10.nix {
|
||||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user