Files
nixpkgs/pkgs/by-name/ja/jama/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

37 lines
709 B
Nix

{
lib,
stdenv,
fetchurl,
unzip,
tnt,
}:
stdenv.mkDerivation rec {
pname = "jama";
version = "1.2.5";
src = fetchurl {
url = "https://math.nist.gov/tnt/jama125.zip";
sha256 = "031ns526fvi2nv7jzzv02i7i5sjcyr0gj884i3an67qhsx8vyckl";
};
nativeBuildInputs = [ unzip ];
propagatedBuildInputs = [ tnt ];
unpackPhase = ''
mkdir "${pname}-${version}"
unzip "$src"
'';
installPhase = ''
mkdir -p $out/include
cp *.h $out/include
'';
meta = with lib; {
homepage = "https://math.nist.gov/tnt/";
description = "JAMA/C++ Linear Algebra Package: Java-like matrix C++ templates";
platforms = platforms.unix;
license = licenses.publicDomain;
};
}