mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, cmake, clang }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alglib3";
|
|
version = "4.03.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.alglib.net/translator/re/alglib-${version}.cpp.gpl.tgz";
|
|
sha256 = "sha256-k7/U9Tq2ND8+qd8tHZP9Gq1okJF3tMNej3WE/6NkBYI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
clang
|
|
];
|
|
|
|
patches = [
|
|
./patch-alglib-CMakeLists.patch
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Numerical analysis and data processing library";
|
|
homepage = "https://www.alglib.net/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ maintainers.paperdigits ];
|
|
longDescription = ''
|
|
ALGLIB is a cross-platform numerical analysis and data processing library. It supports several programming languages (C++, C#, Delphi) and several operating systems (Windows and POSIX, including Linux). ALGLIB features include:
|
|
|
|
* Data analysis (classification/regression, statistics)
|
|
* Optimization and nonlinear solvers
|
|
* Interpolation and linear/nonlinear least-squares fitting
|
|
* Linear algebra (direct algorithms, EVD/SVD), direct and iterative linear solvers
|
|
* Fast Fourier Transform and many other algorithms
|
|
'';
|
|
};
|
|
}
|