mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
TNT library: packaged
svn path=/nixpkgs/trunk/; revision=24276
This commit is contained in:
parent
686802b8e1
commit
41ff904b91
23
pkgs/development/libraries/tnt/default.nix
Normal file
23
pkgs/development/libraries/tnt/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{stdenv, fetchurl, unzip}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tnt-${version}";
|
||||||
|
version = "3.0.12";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://math.nist.gov/tnt/tnt_3_0_12.zip;
|
||||||
|
sha256 = "1bzkfdb598584qlc058n8wqq9vbz714gr5r57401rsa9qaxhk5j7";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/include
|
||||||
|
cp *.h $out/include
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://math.nist.gov/tnt/;
|
||||||
|
description = "Template Numerical Toolkit: C++ headers for array and matrices";
|
||||||
|
};
|
||||||
|
}
|
@ -3832,6 +3832,8 @@ let
|
|||||||
|
|
||||||
tk = callPackage ../development/libraries/tk { };
|
tk = callPackage ../development/libraries/tk { };
|
||||||
|
|
||||||
|
tnt = callPackage ../development/libraries/tnt { };
|
||||||
|
|
||||||
unicap = callPackage ../development/libraries/unicap {};
|
unicap = callPackage ../development/libraries/unicap {};
|
||||||
|
|
||||||
unixODBC = callPackage ../development/libraries/unixODBC { };
|
unixODBC = callPackage ../development/libraries/unixODBC { };
|
||||||
|
Loading…
Reference in New Issue
Block a user