Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / tnt / default.nix
blobf4787271c039cd53443926bf3622622b02613651
1 {lib, stdenv, fetchurl, unzip}:
3 stdenv.mkDerivation {
4   pname = "tnt";
5   version = "3.0.12";
7   src = fetchurl {
8     url = "https://math.nist.gov/tnt/tnt_3_0_12.zip";
9     sha256 = "1bzkfdb598584qlc058n8wqq9vbz714gr5r57401rsa9qaxhk5j7";
10   };
12   nativeBuildInputs = [ unzip ];
14   installPhase = ''
15       mkdir -p $out/include
16       cp *.h $out/include
17   '';
19   meta = {
20     homepage = "https://math.nist.gov/tnt/";
21     description = "Template Numerical Toolkit: C++ headers for array and matrices";
22     license = lib.licenses.publicDomain;
23     platforms = lib.platforms.unix;
24   };